Browse Source

Use STD*_FILENO constants where applicable

pull/2/head
Rémi Denis-Courmont 14 years ago
parent
commit
83a11816bc
  1. 3
      bin/override.c
  2. 2
      bin/winvlc.c
  3. 4
      modules/access_output/file.c

3
bin/override.c

@ -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);

2
bin/winvlc.c

@ -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];

4
modules/access_output/file.c

@ -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");

Loading…
Cancel
Save