Remove no-op brackets to resync with upstream.
diff --git a/sshpty.c b/sshpty.c
index 15da8c6..b8457d9 100644
--- a/sshpty.c
+++ b/sshpty.c
@@ -155,11 +155,11 @@
 		error("SETPGRP %s",strerror(errno));
 #endif /* NEED_SETPGRP */
 	fd = open(tty, O_RDWR);
-	if (fd < 0) {
+	if (fd < 0)
 		error("%.100s: %.100s", tty, strerror(errno));
-	} else {
+	else
 		close(fd);
-	}
+
 	/* Verify that we now have a controlling tty. */
 	fd = open(_PATH_TTY, O_WRONLY);
 	if (fd < 0)