Commit 5d31b49b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

s/if/ifdef/

parent 64d23812
...@@ -326,7 +326,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -326,7 +326,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
#ifndef WIN32 #ifndef WIN32
if( config_GetInt( p_libvlc, "daemon" ) ) if( config_GetInt( p_libvlc, "daemon" ) )
{ {
#if HAVE_DAEMON #ifdef HAVE_DAEMON
char *psz_pidfile = NULL; char *psz_pidfile = NULL;
if( daemon( 1, 0) != 0 ) if( daemon( 1, 0) != 0 )
......
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