Commit 83a11816 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Use STD*_FILENO constants where applicable

parent 17fbcd4e
......@@ -39,6 +39,7 @@ void vlc_enable_override (void);
#include <pthread.h>
#ifdef HAVE_EXECINFO_H
# include <execinfo.h>
# include <unistd.h>
#endif
#ifdef NDEBUG
# undef HAVE_BACKTRACE
......@@ -75,7 +76,7 @@ static void vlogbug (unsigned *pc, const char *level, const char *func,
fputs (")\n", stderr);
fflush (stderr);
#ifdef HAVE_BACKTRACE
backtrace_symbols_fd (framev + 2, framec - 2, fileno (stderr));
backtrace_symbols_fd (framev + 2, framec - 2, STDERR_FILENO);
#endif
}
funlockfile (stderr);
......
......@@ -196,7 +196,7 @@ int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
SetUnhandledExceptionFilter(vlc_exception_filter);
}
_setmode( _fileno( stdin ), _O_BINARY ); /* Needed for pipes */
_setmode( STDIN_FILENO, _O_BINARY ); /* Needed for pipes */
#else /* UNDER_CE */
char **argv, psz_cmdline[wcslen(lpCmdLine) * 4];
......
......@@ -139,9 +139,9 @@ static int Open( vlc_object_t *p_this )
if( !strcmp( p_access->psz_path, "-" ) )
{
#if defined( WIN32 ) || defined( __OS2__ )
setmode (fileno (stdout), O_BINARY);
setmode (STDOUT_FILENO, O_BINARY);
#endif
fd = vlc_dup (fileno (stdout));
fd = vlc_dup (STDOUT_FILENO);
if (fd == -1)
{
msg_Err (p_access, "cannot use standard output: %m");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment