summaryrefslogtreecommitdiff
path: root/apps/sound_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/sound_menu.c')
-rw-r--r--apps/sound_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/sound_menu.c b/apps/sound_menu.c
index 01bbe09bd1..256da0b81a 100644
--- a/apps/sound_menu.c
+++ b/apps/sound_menu.c
@@ -307,7 +307,7 @@ bool sound_menu(void)
307#endif 307#endif
308 }; 308 };
309 309
310 m=menu_init( items, sizeof items / sizeof(struct menu_items) ); 310 m=menu_init( items, sizeof items / sizeof(struct menu_items), NULL );
311 result = menu_run(m); 311 result = menu_run(m);
312 menu_exit(m); 312 menu_exit(m);
313 313
@@ -341,7 +341,7 @@ bool recording_menu(bool no_source)
341 menu[i].desc = str(LANG_RECORD_DIRECTORY); 341 menu[i].desc = str(LANG_RECORD_DIRECTORY);
342 menu[i++].function = recdirectory; 342 menu[i++].function = recdirectory;
343 343
344 m=menu_init( menu, i ); 344 m=menu_init( menu, i, NULL );
345 result = menu_run(m); 345 result = menu_run(m);
346 menu_exit(m); 346 menu_exit(m);
347 347