From aa0fff7f9c9fce89210ec764dd892afbdc28c571 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 14 Jan 2015 02:22:27 +0100 Subject: pty: minor modernization We initialize structs during declartion if possible --- src/shared/pty.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/shared') diff --git a/src/shared/pty.c b/src/shared/pty.c index 6863be654e..fbe6295ea5 100644 --- a/src/shared/pty.c +++ b/src/shared/pty.c @@ -550,16 +550,15 @@ int pty_signal(Pty *pty, int sig) { } int pty_resize(Pty *pty, unsigned short term_width, unsigned short term_height) { - struct winsize ws; + struct winsize ws = { + .ws_col = term_width, + .ws_row = term_height, + }; assert_return(pty, -EINVAL); assert_return(pty_is_open(pty), -ENODEV); assert_return(pty_is_parent(pty), -ENODEV); - zero(ws); - ws.ws_col = term_width; - ws.ws_row = term_height; - /* * This will send SIGWINCH to the pty slave foreground process group. * We will also get one, but we don't need it. -- cgit v1.2.3-54-g00ecf