diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-11-20 18:53:05 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-11-20 18:53:05 +0000 |
commit | 32d448c470861924648bed914d7d86b59e9dfeda (patch) | |
tree | 927a57983ae4131b706a6777ff2bc250aa76bce6 | |
parent | 571ec3d68ddfa230f1c60eba1f7e24f5a3ffb03b (diff) | |
download | qemu-32d448c470861924648bed914d7d86b59e9dfeda.zip qemu-32d448c470861924648bed914d7d86b59e9dfeda.tar.gz qemu-32d448c470861924648bed914d7d86b59e9dfeda.tar.bz2 |
added LF missing in logs (malc)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1637 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | audio/alsaaudio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/alsaaudio.c b/audio/alsaaudio.c index 3ab264e..30f1e50 100644 --- a/audio/alsaaudio.c +++ b/audio/alsaaudio.c @@ -690,14 +690,14 @@ static int alsa_voice_ctl (snd_pcm_t *handle, const char *typ, int pause) if (pause) { err = snd_pcm_drop (handle); if (err < 0) { - alsa_logerr (err, "Could not stop %s", typ); + alsa_logerr (err, "Could not stop %s\n", typ); return -1; } } else { err = snd_pcm_prepare (handle); if (err < 0) { - alsa_logerr (err, "Could not prepare handle for %s", typ); + alsa_logerr (err, "Could not prepare handle for %s\n", typ); return -1; } } |