From: RĂ©mi Denis-Courmont Date: Mon, 4 Feb 2008 18:40:45 +0000 (+0000) Subject: s/if/ifdef/ X-Git-Tag: 0.9.0-test0~2928 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=5d31b49b3e96d200bc56cbd858fc1442e598e92f;p=vlc s/if/ifdef/ --- diff --git a/src/libvlc-common.c b/src/libvlc-common.c index 807d747b78..a0785a78d0 100644 --- a/src/libvlc-common.c +++ b/src/libvlc-common.c @@ -326,7 +326,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, #ifndef WIN32 if( config_GetInt( p_libvlc, "daemon" ) ) { -#if HAVE_DAEMON +#ifdef HAVE_DAEMON char *psz_pidfile = NULL; if( daemon( 1, 0) != 0 )