diff options
author | Roy Marples <roy@marples.name> | 2007-09-20 11:53:10 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-09-20 11:53:10 +0000 |
commit | 963229dce839c4b144c1819f60cfeef788b35160 (patch) | |
tree | 08d3c9edd340db7961a6f2965a67c0eff662e19a | |
parent | ccced38428aac90cfda37b5570011dae10389d7c (diff) |
whitespace
-rw-r--r-- | src/libeinfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 |