Commit 32d448c470861924648bed914d7d86b59e9dfeda

Authored by bellard
1 parent 571ec3d6

added LF missing in logs (malc)


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1637 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 2 additions and 2 deletions
audio/alsaaudio.c
... ... @@ -690,14 +690,14 @@ static int alsa_voice_ctl (snd_pcm_t *handle, const char *typ, int pause)
690 690 if (pause) {
691 691 err = snd_pcm_drop (handle);
692 692 if (err < 0) {
693   - alsa_logerr (err, "Could not stop %s", typ);
  693 + alsa_logerr (err, "Could not stop %s\n", typ);
694 694 return -1;
695 695 }
696 696 }
697 697 else {
698 698 err = snd_pcm_prepare (handle);
699 699 if (err < 0) {
700   - alsa_logerr (err, "Could not prepare handle for %s", typ);
  700 + alsa_logerr (err, "Could not prepare handle for %s\n", typ);
701 701 return -1;
702 702 }
703 703 }
... ...