From 5d31b49b3e96d200bc56cbd858fc1442e598e92f Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Mon, 4 Feb 2008 18:40:45 +0000 Subject: [PATCH] s/if/ifdef/ --- src/libvlc-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) -- 2.39.2