blob: 415288dfeee2a2eef9e73fe67f6eda647f2f9c8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
diff --git a/pulseaudio.c b/pulseaudio.c
index 7a791a0..ee08dbb 100644
--- a/pulseaudio.c
+++ b/pulseaudio.c
@@ -33,7 +33,7 @@ short int *buf = 0;
int bufsize = 0;
int bufpos = 0;
-void *open_dsp () {
+void *open_dsp (char *dummy) {
static int opened = 0;
/* with PA we only open the device once and then leave it
diff --git a/pulseaudio.h b/pulseaudio.h
index a915f88..fea4d0c 100644
--- a/pulseaudio.h
+++ b/pulseaudio.h
@@ -21,7 +21,7 @@ Street, Fifth Floor, Boston, MA 02110-1301, USA.
#ifndef QRQ_PA
#define QRQ_PA
-void *open_dsp ();
+void *open_dsp (char *dummy);
void write_audio (void *unused, int *in, int size);
void close_audio (void *s);
|