diff options
author | Juan Quintela <quintela@redhat.com> | 2009-12-02 11:49:33 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-03 09:41:25 -0600 |
commit | a244eb7429ecc34797abb23c0852257e31675716 (patch) | |
tree | ebb98a21c2446d4dc6455d8e33876e68f14d5f62 /audio | |
parent | QMP: Introduce vm-info (diff) | |
download | qemu-kvm-a244eb7429ecc34797abb23c0852257e31675716.tar.gz qemu-kvm-a244eb7429ecc34797abb23c0852257e31675716.tar.bz2 qemu-kvm-a244eb7429ecc34797abb23c0852257e31675716.zip |
audio: fix compilation of DEBUG_PLIVE
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/audio_template.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/audio_template.h b/audio/audio_template.h index 1a4707b2e..6b19848af 100644 --- a/audio/audio_template.h +++ b/audio/audio_template.h @@ -445,9 +445,9 @@ SW *glue (AUD_open_, TYPE) ( SW_NAME (sw), sw->info.freq, sw->info.bits, sw->info.nchannels); dolog ("New %s freq %d, bits %d, channels %d\n", name, - freq, - (fmt == AUD_FMT_S16 || fmt == AUD_FMT_U16) ? 16 : 8, - nchannels); + as->freq, + (as->fmt == AUD_FMT_S16 || as->fmt == AUD_FMT_U16) ? 16 : 8, + as->nchannels); #endif if (live) { |