summaryrefslogtreecommitdiffstats
path: root/polyp/pacat-simple.c
diff options
context:
space:
mode:
Diffstat (limited to 'polyp/pacat-simple.c')
-rw-r--r--polyp/pacat-simple.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/polyp/pacat-simple.c b/polyp/pacat-simple.c
index 09cf4d1a..373cdd57 100644
--- a/polyp/pacat-simple.c
+++ b/polyp/pacat-simple.c
@@ -30,19 +30,20 @@
#include <polyp/polyplib-simple.h>
#include <polyp/polyplib-error.h>
+#include "gccmacro.h"
#define BUFSIZE 1024
-int main(int argc, char*argv[]) {
+int main(PA_GCC_UNUSED int argc, char*argv[]) {
/* The Sample format to use */
- static const struct pa_sample_spec ss = {
+ static const pa_sample_spec ss = {
.format = PA_SAMPLE_S16LE,
.rate = 44100,
.channels = 2
};
- struct pa_simple *s = NULL;
+ pa_simple *s = NULL;
int ret = 1;
int error;