diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-10-28 17:16:55 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-10-28 17:16:55 +0000 |
commit | 94ee53178d3c9e6950e9fccaeaf67555274a4107 (patch) | |
tree | abaf7e26819676f61f1ae67352b48eb2598e255b /src/playlist.c | |
parent | d79f3110b504e0ff4518717dfab4e2a87fe8c089 (diff) | |
download | mpd-94ee53178d3c9e6950e9fccaeaf67555274a4107.tar.gz mpd-94ee53178d3c9e6950e9fccaeaf67555274a4107.tar.xz mpd-94ee53178d3c9e6950e9fccaeaf67555274a4107.zip |
oops, forgot the parse the state_file as a path
git-svn-id: https://svn.musicpd.org/mpd/trunk@2383 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/playlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/playlist.c b/src/playlist.c index 74bb56116..a77581c5c 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -179,7 +179,7 @@ void initPlaylist() { srand(time(NULL)); - playlist_stateFile = getConfigParamValue(CONF_STATE_FILE); + playlist_stateFile = parseConfigFilePath(CONF_STATE_FILE, 0); for(i=0; i<playlist_max_length*PLAYLIST_HASH_MULT; i++) { playlist.idToPosition[i] = -1; |