From: Glenn L McGrath Date: Wed, 15 Sep 2004 03:24:32 +0000 (-0000) Subject: Add a missing brace, patch by Hideki IWAMOTO X-Git-Tag: 1_00~32 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ca1c1afadc06c206455fbee35c73a3099de550d0;p=oweals%2Fbusybox.git Add a missing brace, patch by Hideki IWAMOTO --- diff --git a/coreutils/stty.c b/coreutils/stty.c index bd3a36911..d62068668 100644 --- a/coreutils/stty.c +++ b/coreutils/stty.c @@ -980,6 +980,7 @@ set_window_size(int rows, int cols, int fd) if ((ioctl(fd, TIOCSWINSZ, (char *) &win) != 0) || (ioctl(fd, TIOCSSIZE, (char *) &ttysz) != 0)) { perror_on_device("%s"); + } return; } # endif