aboutsummaryrefslogtreecommitdiffstats
path: root/src/state_file.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-10-06 10:30:10 +0200
committerMax Kellermann <max@duempel.org>2009-10-06 10:30:10 +0200
commit1e663b186998ffdeef9b3b9775558e9378bad342 (patch)
tree09433f0da6c26859a603ef740a94033be6fbdf44 /src/state_file.c
parent7013f9fc3105a4e928cbd87bb177325e9b26bbc6 (diff)
downloadmpd-1e663b186998ffdeef9b3b9775558e9378bad342.tar.gz
mpd-1e663b186998ffdeef9b3b9775558e9378bad342.tar.xz
mpd-1e663b186998ffdeef9b3b9775558e9378bad342.zip
output_state: no CamelCase
Diffstat (limited to 'src/state_file.c')
-rw-r--r--src/state_file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/state_file.c b/src/state_file.c
index 18548d03c..14c76d739 100644
--- a/src/state_file.c
+++ b/src/state_file.c
@@ -53,7 +53,7 @@ state_file_write(void)
}
save_sw_volume_state(fp);
- saveAudioDevicesState(fp);
+ audio_output_state_save(fp);
playlist_state_save(fp, &g_playlist);
while(fclose(fp) && errno == EINTR) /* nothing */;
@@ -81,7 +81,7 @@ state_file_read(void)
g_strchomp(line);
success = read_sw_volume_state(line) ||
- readAudioDevicesState(line) ||
+ audio_output_state_read(line) ||
playlist_state_restore(line, fp, &g_playlist);
if (!success)
g_warning("Unrecognized line in state file: %s", line);