summaryrefslogtreecommitdiff
path: root/apps/filetree.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-02-18 02:04:47 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-02-18 02:04:47 +0000
commit8ff3a653bdf89747100389a2ee933d2e7b5efe08 (patch)
tree28b9039d587f1998ae54f62d3c2317bdcc72b9d9 /apps/filetree.c
parent1083de8e7dd9360c999dbfe08cdf5d7c1ee5c4a6 (diff)
downloadrockbox-8ff3a653bdf89747100389a2ee933d2e7b5efe08.tar.gz
rockbox-8ff3a653bdf89747100389a2ee933d2e7b5efe08.zip
Explicilty set CONFIG_ defines to 0 which are not used.. because doing
#if defined(BLAA) && BLAA == something defeats the point of Wundef git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12378 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/filetree.c')
-rw-r--r--apps/filetree.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/filetree.c b/apps/filetree.c
index df4065c91b..edf4fa0b63 100644
--- a/apps/filetree.c
+++ b/apps/filetree.c
@@ -46,7 +46,7 @@
46#include "keyboard.h" 46#include "keyboard.h"
47#endif 47#endif
48 48
49#ifdef CONFIG_TUNER 49#if CONFIG_TUNER
50#include "radio.h" 50#include "radio.h"
51#endif 51#endif
52 52
@@ -288,7 +288,7 @@ int ft_load(struct tree_context* c, const char* tempdir)
288#ifdef HAVE_REMOTE_LCD 288#ifdef HAVE_REMOTE_LCD
289 (*c->dirfilter == SHOW_RWPS && (dptr->attr & TREE_ATTR_MASK) != TREE_ATTR_RWPS) || 289 (*c->dirfilter == SHOW_RWPS && (dptr->attr & TREE_ATTR_MASK) != TREE_ATTR_RWPS) ||
290#endif 290#endif
291#ifdef CONFIG_TUNER 291#if CONFIG_TUNER
292 (*c->dirfilter == SHOW_FMR && (dptr->attr & TREE_ATTR_MASK) != TREE_ATTR_FMR) || 292 (*c->dirfilter == SHOW_FMR && (dptr->attr & TREE_ATTR_MASK) != TREE_ATTR_FMR) ||
293#endif 293#endif
294 (*c->dirfilter == SHOW_CFG && (dptr->attr & TREE_ATTR_MASK) != TREE_ATTR_CFG) || 294 (*c->dirfilter == SHOW_CFG && (dptr->attr & TREE_ATTR_MASK) != TREE_ATTR_CFG) ||
@@ -435,7 +435,7 @@ int ft_enter(struct tree_context* c)
435 } 435 }
436 break; 436 break;
437 437
438#ifdef CONFIG_TUNER 438#if CONFIG_TUNER
439 /* fmr preset file */ 439 /* fmr preset file */
440 case TREE_ATTR_FMR: 440 case TREE_ATTR_FMR:
441 441