summaryrefslogtreecommitdiff
path: root/emulators/qemu/patches/patch-ef
blob: bfef9ae57d5c01a0d42d9a8d7f4bc205395dfa21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$NetBSD: patch-ef,v 1.7 2014/01/15 18:26:20 wiz 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	2013-11-27 22:15:55.000000000 +0000
+++ audio/audio.c
@@ -1173,7 +1173,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;
 }