From ad2a737a115ee55c68fac805563bc412109cbf26 Mon Sep 17 00:00:00 2001 From: Dave Chapman Date: Thu, 10 Jan 2013 20:59:14 +0000 Subject: [PATCH] Fix typo - ENABLE_ defines need to be tested with #if. Thanks to Glandos for spotting. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index c546d7a1..c6e0254d 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