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
This commit is contained in:

committed by
Eric Wong

parent
05c41a80ed
commit
f7e97c9a89
@@ -444,8 +444,8 @@ static MpdTag *aacTagDup(char *file)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static char *aac_suffixes[] = { "aac", NULL };
|
||||
static char *aac_mimeTypes[] = { "audio/aac", "audio/aacp", NULL };
|
||||
static const char *aac_suffixes[] = { "aac", NULL };
|
||||
static const char *aac_mimeTypes[] = { "audio/aac", "audio/aacp", NULL };
|
||||
|
||||
InputPlugin aacPlugin = {
|
||||
"aac",
|
||||
|
@@ -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",
|
||||
|
Reference in New Issue
Block a user