aboutsummaryrefslogtreecommitdiff
path: root/src/state_file.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-07-14 21:28:26 +0200
committerMax Kellermann <max@duempel.org>2009-07-14 21:28:26 +0200
commit5a886da93bdba9dcd1575cd8fb5fe05ec22824e6 (patch)
tree3c5bf8aa6a64cfb82bee7fb9cf66994bcb8380d0 /src/state_file.c
parent9206f549798ee68d1768f418405bbb8b041b71ee (diff)
playlist: removed {save,read}PlaylistState()
Those were only wrappers for playlist_state_{save,restore}(). Since sf_callbacks has been removed, we can call the latter functions directly.
Diffstat (limited to 'src/state_file.c')
-rw-r--r--src/state_file.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/state_file.c b/src/state_file.c
index 8080f80f..ceb6ee6e 100644
--- a/src/state_file.c
+++ b/src/state_file.c
@@ -20,6 +20,7 @@
#include "state_file.h"
#include "output_state.h"
#include "playlist.h"
+#include "playlist_state.h"
#include "volume.h"
#include <glib.h>
@@ -52,7 +53,7 @@ state_file_write(void)
save_sw_volume_state(fp);
saveAudioDevicesState(fp);
- savePlaylistState(fp);
+ playlist_state_save(fp, &g_playlist);
while(fclose(fp) && errno == EINTR) /* nothing */;
}
@@ -77,7 +78,7 @@ state_file_read(void)
rewind(fp);
readAudioDevicesState(fp);
rewind(fp);
- readPlaylistState(fp);
+ playlist_state_restore(fp, &g_playlist);
while(fclose(fp) && errno == EINTR) /* nothing */;
}