summaryrefslogtreecommitdiff
path: root/emulators/qemu/patches/patch-ef
blob: 20fb5b3e197057600da64d61398f3494f69663b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$NetBSD: patch-ef,v 1.3 2011/08/22 12:00:34 ryoon Exp $

Avoid conflicts with SSP read() macro in NetBSD's <ssp/unistd.h>
(PR lib/43832: ssp causes common names to be defines)

--- audio/audio.c.orig	2011-08-08 18:28:42 +0000
+++ audio/audio.c
@@ -1162,7 +1162,7 @@ int AUD_read (SWVoiceIn *sw, void *buf, 
         return 0;
     }
 
-    bytes = sw->hw->pcm_ops->read (sw, buf, size);
+    bytes = (*sw->hw->pcm_ops->read)(sw, buf, size);
     return bytes;
 }