diff options
author | malc | 2009-05-14 01:11:35 +0200 |
---|---|---|
committer | malc | 2009-05-14 01:20:43 +0200 |
commit | 1a7dafce1dfc3dc2052d0c5d8397e72121291c57 (patch) | |
tree | 6b83da7787156494d16c58e2d5a41396a01a964f /vnc.c | |
parent | Remove redundant pcnet.o (diff) | |
download | qemu-1a7dafce1dfc3dc2052d0c5d8397e72121291c57.tar.gz qemu-1a7dafce1dfc3dc2052d0c5d8397e72121291c57.tar.xz qemu-1a7dafce1dfc3dc2052d0c5d8397e72121291c57.zip |
Remove any pretense that there can be more than one AudioState
Diffstat (limited to 'vnc.c')
-rw-r--r-- | vnc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -855,7 +855,7 @@ static void audio_add(VncState *vs) ops.destroy = audio_capture_destroy; ops.capture = audio_capture; - vs->audio_cap = AUD_add_capture(NULL, &vs->as, &ops, vs); + vs->audio_cap = AUD_add_capture(&vs->as, &ops, vs); if (!vs->audio_cap) { monitor_printf(mon, "Failed to add audio capture\n"); } |