diff options
author | Michael Giacomelli <giac2000@hotmail.com> | 2012-06-22 11:38:35 -0400 |
---|---|---|
committer | Michael Giacomelli <giac2000@hotmail.com> | 2012-06-22 11:38:35 -0400 |
commit | d245997667337d50096d8890bf82975b5bf3d423 (patch) | |
tree | ea345268d8f533a1f6eb041d084f28dc7ee94133 /apps | |
parent | b30edcd62f2e16525bc9c6fe0b52769ae30b0dc8 (diff) |
Fix warning on previous commit.
Change-Id: Idd760f4e83fc5ade972fe88db3cab9e03c24966c
Diffstat (limited to 'apps')
-rwxr-xr-x[-rw-r--r--] | apps/playlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playlist.c b/apps/playlist.c index 42c0d8b7c5..c5e2e83462 100644..100755 --- a/apps/playlist.c +++ b/apps/playlist.c @@ -3463,7 +3463,7 @@ int playlist_save(struct playlist_info* playlist, char *filename) /* use current working directory as base for pathname */ if (format_track_path(path, filename, sizeof(tmp_buf), - strlen(filename)+1, '/') < 0) + strlen(filename)+1, "/") < 0) return -1; /* can ignore volatile here, because core_get_data() is called later */ |