diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-01-14 02:22:27 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-01-14 23:18:33 +0100 |
commit | aa0fff7f9c9fce89210ec764dd892afbdc28c571 (patch) | |
tree | 7ec6b2c0b320f1767a70b1cc3e996a6f6a7884f3 /src/shared/pty.c | |
parent | 01b725684f6ba54f0db815669e4e07eb0e02fedb (diff) |
pty: minor modernization
We initialize structs during declartion if possible
Diffstat (limited to 'src/shared/pty.c')
-rw-r--r-- | src/shared/pty.c | 9 |
1 files changed, 4 insertions, 5 deletions
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. |