diff options
author | Max Kellermann <max@duempel.org> | 2011-09-11 07:55:19 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-09-11 07:55:19 +0200 |
commit | 14d573cbf1e540a87bed3e9384ba16fed990cc4f (patch) | |
tree | f9f021679769f5917ad8d0dd1cd3a80e28e9c5d8 /src/stored_playlist.c | |
parent | 7819aa6b2060b600b9ec2471f250038eeebae523 (diff) | |
download | mpd-14d573cbf1e540a87bed3e9384ba16fed990cc4f.tar.gz mpd-14d573cbf1e540a87bed3e9384ba16fed990cc4f.tar.xz mpd-14d573cbf1e540a87bed3e9384ba16fed990cc4f.zip |
playlist: move PLAYLIST_COMMENT to stored_playlist.c
Only used there.
Diffstat (limited to '')
-rw-r--r-- | src/stored_playlist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stored_playlist.c b/src/stored_playlist.c index 9b3ec4a7f..c3785a6f3 100644 --- a/src/stored_playlist.c +++ b/src/stored_playlist.c @@ -37,6 +37,8 @@ #include <string.h> #include <errno.h> +static const char PLAYLIST_COMMENT = '#'; + static unsigned playlist_max_length; bool playlist_saveAbsolutePaths = DEFAULT_PLAYLIST_SAVE_ABSOLUTE_PATHS; |