]> git.sesse.net Git - vlc/commitdiff
logger: fix compilation on OS/2
authorKO Myung-Hun <komh78@gmail.com>
Mon, 23 Feb 2015 13:27:57 +0000 (22:27 +0900)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 23 Feb 2015 16:51:01 +0000 (17:51 +0100)
-----
  CC       logger/console.lo
logger/console.c: In function 'Open':
logger/console.c:115:5: error: implicit declaration of function 'isatty' [-Werror=implicit-function-declaration]
     if (isatty(STDERR_FILENO) && var_InheritBool(obj, "color"))
     ^
logger/console.c:115:16: error: 'STDERR_FILENO' undeclared (first use in this function)
     if (isatty(STDERR_FILENO) && var_InheritBool(obj, "color"))
                ^
logger/console.c:115:16: note: each undeclared identifier is reported only once for each function it appears in
cc1.exe: some warnings being treated as errors
-----

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
modules/logger/console.c

index 2b877c333196733f382161405cbd6addcb816370..45a89322b4d4232963a84a31039910e8d4a1e669 100644 (file)
@@ -26,6 +26,7 @@
 #include <stdarg.h>
 #include <stdio.h>
 #include <inttypes.h>
+#include <unistd.h>         /* isatty(), STDERR_FILNO */
 
 #include <vlc_common.h>
 #include <vlc_plugin.h>