]> git.proxmox.com Git - qemu.git/blobdiff - hw/adlib.c
Version 1.0.1
[qemu.git] / hw / adlib.c
index c1c46e3573a85dc3fd1e195d3fecbb0c5a114a22..e4bfcc6420045d61ac79c5129b4784268310f431 100644 (file)
@@ -119,7 +119,6 @@ static IO_WRITE_PROTO (adlib_write)
 {
     AdlibState *s = opaque;
     int a = nport & 3;
-    int status;
 
     s->active = 1;
     AUD_set_active_out (s->voice, 1);
@@ -127,9 +126,9 @@ static IO_WRITE_PROTO (adlib_write)
     adlib_kill_timers (s);
 
 #ifdef HAS_YMF262
-    status = YMF262Write (0, a, val);
+    YMF262Write (0, a, val);
 #else
-    status = OPLWrite (s->opl, a, val);
+    OPLWrite (s->opl, a, val);
 #endif
 }