Add a missing brace, patch by Hideki IWAMOTO
diff --git a/coreutils/stty.c b/coreutils/stty.c
index bd3a369..d620686 100644
--- a/coreutils/stty.c
+++ b/coreutils/stty.c
@@ -980,6 +980,7 @@
 		if ((ioctl(fd, TIOCSWINSZ, (char *) &win) != 0)
 			|| (ioctl(fd, TIOCSSIZE, (char *) &ttysz) != 0)) {
 			perror_on_device("%s");
+		}
 		return;
 	}
 # endif