From: Dave Chapman Date: Thu, 10 Jan 2013 20:59:14 +0000 (+0000) Subject: Fix typo - ENABLE_ defines need to be tested with #if. Thanks to Glandos for spotting. X-Git-Tag: v3.5~127 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad2a737a115ee55c68fac805563bc412109cbf26;p=thirdparty%2Ftvheadend.git Fix typo - ENABLE_ defines need to be tested with #if. Thanks to Glandos for spotting. --- diff --git a/src/main.c b/src/main.c index c546d7a15..c6e0254d9 100644 --- a/src/main.c +++ b/src/main.c @@ -387,7 +387,7 @@ main(int argc, char **argv) "to your Tvheadend installation until you edit\n" "the access-control from within the Tvheadend UI", OPT_BOOL, &opt_firstrun }, -#ifdef ENABLE_LINUXDVB +#if ENABLE_LINUXDVB { 'a', "adapters", "Use only specified DVB adapters", OPT_STR, &opt_dvb_adapters }, #endif