output_state: no CamelCase
This commit is contained in:
parent
7013f9fc31
commit
1e663b1869
@ -35,7 +35,7 @@
|
||||
#define AUDIO_DEVICE_STATE "audio_device_state:"
|
||||
|
||||
void
|
||||
saveAudioDevicesState(FILE *fp)
|
||||
audio_output_state_save(FILE *fp)
|
||||
{
|
||||
unsigned n = audio_output_count();
|
||||
|
||||
@ -50,7 +50,7 @@ saveAudioDevicesState(FILE *fp)
|
||||
}
|
||||
|
||||
bool
|
||||
readAudioDevicesState(const char *line)
|
||||
audio_output_state_read(const char *line)
|
||||
{
|
||||
long value;
|
||||
char *endptr;
|
||||
|
@ -29,9 +29,9 @@
|
||||
#include <stdio.h>
|
||||
|
||||
bool
|
||||
readAudioDevicesState(const char *line);
|
||||
audio_output_state_read(const char *line);
|
||||
|
||||
void
|
||||
saveAudioDevicesState(FILE *fp);
|
||||
audio_output_state_save(FILE *fp);
|
||||
|
||||
#endif
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user