diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2008-11-30 12:33:58 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2008-11-30 12:33:58 +0000 |
| commit | ae929e4dcd4e5b2adf51cd1800110f596ed40477 (patch) | |
| tree | 1d83287753dcbf33a7123440c08fad0aed09f650 /apps | |
| parent | 65e8277a221883a77f5599e86eaec59ce1306e84 (diff) | |
| download | rockbox-ae929e4dcd4e5b2adf51cd1800110f596ed40477.zip rockbox-ae929e4dcd4e5b2adf51cd1800110f596ed40477.tar.gz rockbox-ae929e4dcd4e5b2adf51cd1800110f596ed40477.tar.bz2 rockbox-ae929e4dcd4e5b2adf51cd1800110f596ed40477.tar.xz | |
Make struct text_message const in apps/onplay.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19270 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/onplay.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/onplay.c b/apps/onplay.c index 1735fdb..64df975 100644 --- a/apps/onplay.c +++ b/apps/onplay.c @@ -533,8 +533,8 @@ static bool delete_handler(bool is_dir) file_to_delete }; - struct text_message message={lines, 2}; - struct text_message yes_message={yes_lines, 2}; + const struct text_message message={lines, 2}; + const struct text_message yes_message={yes_lines, 2}; if(gui_syncyesno_run(&message, &yes_message, NULL)!=YESNO_YES) return false; |