aboutsummaryrefslogtreecommitdiffstats
path: root/src/volume.c
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2008-09-18 04:29:53 -0700
committerEric Wong <normalperson@yhbt.net>2008-09-18 04:29:53 -0700
commit71ac281579c8b8b384cfc09d8627b549b1854fcd (patch)
treeb501975bac64ac2cb1be1e30860302ccb3eda67e /src/volume.c
parentba4f62f7d241e2837111102a4dda0c917d544c99 (diff)
downloadmpd-71ac281579c8b8b384cfc09d8627b549b1854fcd.tar.gz
mpd-71ac281579c8b8b384cfc09d8627b549b1854fcd.tar.xz
mpd-71ac281579c8b8b384cfc09d8627b549b1854fcd.zip
Move away from fprintf() when writing DB/state_file
I have serious trust issues when using stdio to write to the FS. So it's best to clean this code out so I can start figuring out what's wrong with Rasi's box not updating... None of these writes take place in a performance-critical setting anyways...
Diffstat (limited to 'src/volume.c')
-rw-r--r--src/volume.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/volume.c b/src/volume.c
index 428c3b8a1..6d8411165 100644
--- a/src/volume.c
+++ b/src/volume.c
@@ -23,6 +23,7 @@
#include "utils.h"
#include "os_compat.h"
#include "outputBuffer.h"
+#include "myfprintf.h"
#include "../config.h"
@@ -532,9 +533,9 @@ void read_sw_volume_state(FILE *fp)
#undef bufsize
}
-void save_sw_volume_state(FILE *fp)
+void save_sw_volume_state(int fd)
{
if (volume_mixerType == VOLUME_MIXER_TYPE_SOFTWARE)
- fprintf(fp, SW_VOLUME_STATE "%d\n", volume_softwareSet);
+ fdprintf(fd, SW_VOLUME_STATE "%d\n", volume_softwareSet);
}