summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorLe Tan <tamlokveer@gmail.com>2014-05-10 07:55:20 +0800
committerMichael Tokarev <mjt@tls.msk.ru>2014-05-26 10:41:21 +0400
commit69e995040c3dc31274c8fd2732391192272ec465 (patch)
tree16f716d5dee2ddb276430815574a638adeefc547 /audio
parentd09b8fa161ed6a61339d4d0870f76f13c033b2a3 (diff)
downloadhqemu-69e995040c3dc31274c8fd2732391192272ec465.zip
hqemu-69e995040c3dc31274c8fd2732391192272ec465.tar.gz
audio: replace fprintf(stderr, ...) with error_report() in audio
Replace fprintf(stderr,...) with error_report() in files audio/*. The trailing "\n"s of the @fmt argument have been removed because @fmt of error_report() should not contain newline. Signed-off-by: Le Tan <tamlokveer@gmail.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'audio')
-rw-r--r--audio/spiceaudio.c2
-rw-r--r--audio/wavcapture.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/audio/spiceaudio.c b/audio/spiceaudio.c
index fceee50..7b79bed 100644
--- a/audio/spiceaudio.c
+++ b/audio/spiceaudio.c
@@ -105,7 +105,7 @@ static int rate_get_samples (struct audio_pcm_info *info, SpiceRateCtl *rate)
bytes = muldiv64 (ticks, info->bytes_per_second, get_ticks_per_sec ());
samples = (bytes - rate->bytes_sent) >> info->shift;
if (samples < 0 || samples > 65536) {
- fprintf (stderr, "Resetting rate control (%" PRId64 " samples)\n", samples);
+ error_report("Resetting rate control (%" PRId64 " samples)", samples);
rate_start (rate);
samples = 0;
}
diff --git a/audio/wavcapture.c b/audio/wavcapture.c
index 9d94623..6f6d792 100644
--- a/audio/wavcapture.c
+++ b/audio/wavcapture.c
@@ -63,8 +63,7 @@ static void wav_destroy (void *opaque)
}
doclose:
if (fclose (wav->f)) {
- fprintf (stderr, "wav_destroy: fclose failed: %s",
- strerror (errno));
+ error_report("wav_destroy: fclose failed: %s", strerror(errno));
}
}
OpenPOWER on IntegriCloud