summaryrefslogtreecommitdiff
path: root/apps/plugins/jpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/jpeg.c')
-rw-r--r--apps/plugins/jpeg.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/apps/plugins/jpeg.c b/apps/plugins/jpeg.c
index 9a32a8c6ca..5e221fea98 100644
--- a/apps/plugins/jpeg.c
+++ b/apps/plugins/jpeg.c
@@ -2097,22 +2097,22 @@ int show_menu(void) /* return 1 to quit */
2097 { "Return", NULL }, 2097 { "Return", NULL },
2098 }; 2098 };
2099 static const struct opt_items slideshow[2] = { 2099 static const struct opt_items slideshow[2] = {
2100 {"Disable",NULL}, 2100 {"Disable",0},
2101 {"Enable",NULL}, 2101 {"Enable",0},
2102 }; 2102 };
2103 static const struct opt_items timeout[12] = { 2103 static const struct opt_items timeout[12] = {
2104 { "1 second", NULL }, 2104 { "1 second", 0 },
2105 { "2 seconds", NULL }, 2105 { "2 seconds", 0 },
2106 { "3 seconds", NULL }, 2106 { "3 seconds", 0 },
2107 { "4 seconds", NULL }, 2107 { "4 seconds", 0 },
2108 { "5 seconds", NULL }, 2108 { "5 seconds", 0 },
2109 { "6 seconds", NULL }, 2109 { "6 seconds", 0 },
2110 { "7 seconds", NULL }, 2110 { "7 seconds", 0 },
2111 { "8 seconds", NULL }, 2111 { "8 seconds", 0 },
2112 { "9 seconds", NULL }, 2112 { "9 seconds", 0 },
2113 { "10 seconds", NULL }, 2113 { "10 seconds", 0 },
2114 { "15 seconds", NULL }, 2114 { "15 seconds", 0 },
2115 { "20 seconds", NULL }, 2115 { "20 seconds", 0 },
2116 }; 2116 };
2117 m = rb->menu_init(items, sizeof(items) / sizeof(*items), 2117 m = rb->menu_init(items, sizeof(items) / sizeof(*items),
2118 NULL, NULL, NULL, NULL); 2118 NULL, NULL, NULL, NULL);