From 7678f34afc9df872af539d56c8110e578e683b08 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Thu, 18 Mar 2010 10:39:24 +0100 Subject: fileno(stderr) -> STDERR_FILENO --- src/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.c b/src/utils.c index 70fd1453..64423c2f 100644 --- a/src/utils.c +++ b/src/utils.c @@ -52,7 +52,7 @@ void progress_bar(int val, int total, const char *text) char s[1024]; const int width = 50; - if ( !isatty(fileno(stderr)) ) return; + if ( !isatty(STDERR_FILENO) ) return; frac = (double)val/total; n = (int)(frac*width); -- cgit v1.2.3