diff options
author | Max Kellermann <max@duempel.org> | 2009-01-25 13:43:57 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-25 13:43:57 +0100 |
commit | 2c45224be72e06463ddd48956ecaef61da9dfecb (patch) | |
tree | 6753a329a3654c23cd681a6df2d1847050a481ea /src/mapper.c | |
parent | 7cc15ffc08dae8d46460ad4b47657fef12bd534b (diff) | |
download | mpd-2c45224be72e06463ddd48956ecaef61da9dfecb.tar.gz mpd-2c45224be72e06463ddd48956ecaef61da9dfecb.tar.xz mpd-2c45224be72e06463ddd48956ecaef61da9dfecb.zip |
mapper: added dot to PLAYLIST_FILE_SUFFIX
Some code will be a little bit simpler if the dot is part of the
string literal.
Diffstat (limited to 'src/mapper.c')
-rw-r--r-- | src/mapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapper.c b/src/mapper.c index 8de2032d9..28471e60e 100644 --- a/src/mapper.c +++ b/src/mapper.c @@ -203,7 +203,7 @@ map_spl_path(void) char * map_spl_utf8_to_fs(const char *name) { - char *filename = g_strconcat(name, "." PLAYLIST_FILE_SUFFIX, NULL); + char *filename = g_strconcat(name, PLAYLIST_FILE_SUFFIX, NULL); char *path; if (playlist_dir == NULL) |