summaryrefslogtreecommitdiff
path: root/apps/status.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/status.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/status.c')
-rw-r--r--apps/status.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/status.c b/apps/status.c
index 3f46607ed1..1551f77d53 100644
--- a/apps/status.c
+++ b/apps/status.c
@@ -43,7 +43,7 @@
43#include "button.h" 43#include "button.h"
44#endif 44#endif
45#include "usb.h" 45#include "usb.h"
46#ifdef CONFIG_TUNER 46#if CONFIG_TUNER
47#include "radio.h" 47#include "radio.h"
48#endif 48#endif
49#if defined(HAVE_RECORDING) && CONFIG_CODEC == SWCODEC 49#if defined(HAVE_RECORDING) && CONFIG_CODEC == SWCODEC
@@ -96,7 +96,7 @@ int current_playmode(void)
96 } 96 }
97#endif 97#endif
98 98
99#ifdef CONFIG_TUNER 99#if CONFIG_TUNER
100 audio_stat = get_radio_status(); 100 audio_stat = get_radio_status();
101 if(audio_stat & FMRADIO_PLAYING) 101 if(audio_stat & FMRADIO_PLAYING)
102 return STATUS_RADIO; 102 return STATUS_RADIO;