Commit 08b621f4 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* const char warning fix

parent d6ed3af1
......@@ -73,8 +73,8 @@ static void Display ( vout_thread_t *, picture_t * );
"creating one file per image. In this case, " \
"the number is not appended to the filename." )
static char *psz_format_list[] = { "png", "jpeg" };
static char *psz_format_list_text[] = { "PNG", "JPEG" };
static const char *psz_format_list[] = { "png", "jpeg" };
static const char *psz_format_list_text[] = { "PNG", "JPEG" };
vlc_module_begin( );
set_shortname( _( "Image file" ) );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment