diff options
author | Max Kellermann <max@duempel.org> | 2008-04-12 04:15:30 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-04-12 04:15:30 +0000 |
commit | f7e97c9a893619c86c16cf1c5417d52de3d77a70 (patch) | |
tree | a755d8fd5e65a5cf7e97e5326e6be0829eb71a1a /src/inputPlugins/mp4_plugin.c | |
parent | 05c41a80ed4c62ea66bdf5aa95d1b5b0fdc79d30 (diff) | |
download | mpd-f7e97c9a893619c86c16cf1c5417d52de3d77a70.tar.gz mpd-f7e97c9a893619c86c16cf1c5417d52de3d77a70.tar.xz mpd-f7e97c9a893619c86c16cf1c5417d52de3d77a70.zip |
constant pointers
There were some const pointers missing in the previous const-cleanup
patch.
git-svn-id: https://svn.musicpd.org/mpd/trunk@7290 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/inputPlugins/mp4_plugin.c')
-rw-r--r-- | src/inputPlugins/mp4_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputPlugins/mp4_plugin.c b/src/inputPlugins/mp4_plugin.c index adaa644b9..7f7ff9433 100644 --- a/src/inputPlugins/mp4_plugin.c +++ b/src/inputPlugins/mp4_plugin.c @@ -414,8 +414,8 @@ static MpdTag *mp4TagDup(char *file) return ret; } -static char *mp4_suffixes[] = { "m4a", "mp4", NULL }; -static char *mp4_mimeTypes[] = { "audio/mp4", "audio/m4a", NULL }; +static const char *mp4_suffixes[] = { "m4a", "mp4", NULL }; +static const char *mp4_mimeTypes[] = { "audio/mp4", "audio/m4a", NULL }; InputPlugin mp4Plugin = { "mp4", |