From 3b4f50d3fbdcce4b90991a90346504461ac8a8a6 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Sun, 28 Feb 2016 12:51:58 +0100 Subject: [PATCH] Style fix. Thanks to axel for watching! --- src/system/libroot/posix/termios.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/system/libroot/posix/termios.c b/src/system/libroot/posix/termios.c index f9191da6fd..07851e9cf7 100644 --- a/src/system/libroot/posix/termios.c +++ b/src/system/libroot/posix/termios.c @@ -106,9 +106,7 @@ speed_t cfgetispeed(const struct termios *termios) { if (termios->c_cflag & CBAUD == CBAUD) - { return termios->c_ispeed; - } return termios->c_cflag & CBAUD; } @@ -137,9 +135,7 @@ speed_t cfgetospeed(const struct termios *termios) { if (termios->c_cflag & CBAUD == CBAUD) - { return termios->c_ospeed; - } return termios->c_cflag & CBAUD; }