summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/playback_control.c
diff options
context:
space:
mode:
authorMarcoen Hirschberg <marcoen@gmail.com>2006-08-11 11:35:26 +0000
committerMarcoen Hirschberg <marcoen@gmail.com>2006-08-11 11:35:26 +0000
commited70da26bd02ad50b9a7e4d1297cb4e7e43be6d4 (patch)
tree490c605b9feb1e0910c9109ce05411118a0d3d29 /apps/plugins/lib/playback_control.c
parent3b52bb9c68665c6860c7da6f8ee0b3d8fe26d53d (diff)
downloadrockbox-ed70da26bd02ad50b9a7e4d1297cb4e7e43be6d4.tar.gz
rockbox-ed70da26bd02ad50b9a7e4d1297cb4e7e43be6d4.zip
don't assign NULL to a long (fixes sim build warnings)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10526 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/playback_control.c')
-rw-r--r--apps/plugins/lib/playback_control.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/plugins/lib/playback_control.c b/apps/plugins/lib/playback_control.c
index e034ecf120..35a2b92b51 100644
--- a/apps/plugins/lib/playback_control.c
+++ b/apps/plugins/lib/playback_control.c
@@ -57,8 +57,8 @@ static bool volume(void)
57static bool shuffle(void) 57static bool shuffle(void)
58{ 58{
59 struct opt_items names[] = { 59 struct opt_items names[] = {
60 {"No", NULL}, 60 {"No", 0},
61 {"Yes", NULL} 61 {"Yes", 0}
62 }; 62 };
63 return api->set_option("Shuffle", &api->global_settings->playlist_shuffle, 63 return api->set_option("Shuffle", &api->global_settings->playlist_shuffle,
64 BOOL, names, 2,NULL); 64 BOOL, names, 2,NULL);
@@ -68,12 +68,12 @@ static bool repeat_mode(void)
68{ 68{
69 bool result; 69 bool result;
70 static const struct opt_items names[] = { 70 static const struct opt_items names[] = {
71 { "Off", NULL }, 71 { "Off", 0 },
72 { "Repeat All", NULL }, 72 { "Repeat All", 0 },
73 { "Repeat One", NULL }, 73 { "Repeat One", 0 },
74 { "Repeat Shuffle", NULL }, 74 { "Repeat Shuffle", 0 },
75#ifdef AB_REPEAT_ENABLE 75#ifdef AB_REPEAT_ENABLE
76 { "Repeat A-B", NULL } 76 { "Repeat A-B", 0 }
77#endif 77#endif
78 }; 78 };
79 79