From 963229dce839c4b144c1819f60cfeef788b35160 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Thu, 20 Sep 2007 11:53:10 +0000 Subject: whitespace --- src/libeinfo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/libeinfo.c b/src/libeinfo.c index 77517c83..b85b2f42 100644 --- a/src/libeinfo.c +++ b/src/libeinfo.c @@ -178,12 +178,12 @@ static int get_term_columns (FILE *stream) #if defined(TIOCGSIZE) /* BSD */ struct ttysize ts; - if (ioctl(fileno (stream), TIOCGSIZE, &ts) == 0) + if (ioctl (fileno (stream), TIOCGSIZE, &ts) == 0) return (ts.ts_cols); #elif defined(TIOCGWINSZ) /* Linux */ struct winsize ws; - if (ioctl(fileno (stream), TIOCGWINSZ, &ws) == 0) + if (ioctl (fileno (stream), TIOCGWINSZ, &ws) == 0) return (ws.ws_col); #endif -- cgit v1.2.3