Commit 57a4700f authored by Max Kellermann's avatar Max Kellermann

TagNames: make tag_item_names const

parent 2b676dc5
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#include "config.h" #include "config.h"
#include "TagType.h" #include "TagType.h"
const char *tag_item_names[TAG_NUM_OF_ITEM_TYPES] = { const char *const tag_item_names[TAG_NUM_OF_ITEM_TYPES] = {
[TAG_ARTIST] = "Artist", [TAG_ARTIST] = "Artist",
[TAG_ARTIST_SORT] = "ArtistSort", [TAG_ARTIST_SORT] = "ArtistSort",
[TAG_ALBUM] = "Album", [TAG_ALBUM] = "Album",
......
...@@ -51,6 +51,6 @@ enum tag_type { ...@@ -51,6 +51,6 @@ enum tag_type {
* An array of strings, which map the #tag_type to its machine * An array of strings, which map the #tag_type to its machine
* readable name (specific to the MPD protocol). * readable name (specific to the MPD protocol).
*/ */
extern const char *tag_item_names[]; extern const char *const tag_item_names[];
#endif #endif
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