diff options
author | Max Kellermann <max@duempel.org> | 2015-11-06 09:52:35 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-11-06 09:52:35 +0100 |
commit | 0d1a54262cfa7a1a6df34331e7cc28486fe46b35 (patch) | |
tree | d2bd5ed8c743c39ae4340495d2f3224f225b0e36 /src/playlist/plugins | |
parent | e7ef7f51592e384d4a2ecd2e57af56053fb57e42 (diff) | |
download | mpd-0d1a54262cfa7a1a6df34331e7cc28486fe46b35.tar.gz mpd-0d1a54262cfa7a1a6df34331e7cc28486fe46b35.tar.xz mpd-0d1a54262cfa7a1a6df34331e7cc28486fe46b35.zip |
playlist/soundcloud: make key_str "static const"
Diffstat (limited to 'src/playlist/plugins')
-rw-r--r-- | src/playlist/plugins/SoundCloudPlaylistPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/playlist/plugins/SoundCloudPlaylistPlugin.cxx b/src/playlist/plugins/SoundCloudPlaylistPlugin.cxx index 1c6e58ac6..0d3f0fb8b 100644 --- a/src/playlist/plugins/SoundCloudPlaylistPlugin.cxx +++ b/src/playlist/plugins/SoundCloudPlaylistPlugin.cxx @@ -94,7 +94,7 @@ enum key { Other, }; -const char* key_str[] = { +static const char *const key_str[] = { "duration", "title", "stream_url", |