From c4e14839e8c6756223c2edaf104f6ce24337d076 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Wed, 24 Mar 2010 19:35:03 +0100 Subject: [PATCH] synaestesia: Fix old-style prototype --- gst/synaesthesia/synaescope.c | 2 +- gst/synaesthesia/synaescope.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/synaesthesia/synaescope.c b/gst/synaesthesia/synaescope.c index b60d669..92abd39 100644 --- a/gst/synaesthesia/synaescope.c +++ b/gst/synaesthesia/synaescope.c @@ -337,7 +337,7 @@ synaesthesia_update (syn_instance * si, gint16 data[2][FFT_BUFFER_SIZE]) } void -synaesthesia_init () +synaesthesia_init (void) { static int inited = 0; int i; diff --git a/gst/synaesthesia/synaescope.h b/gst/synaesthesia/synaescope.h index ae1aba4..fe41a9a 100644 --- a/gst/synaesthesia/synaescope.h +++ b/gst/synaesthesia/synaescope.h @@ -31,7 +31,7 @@ typedef struct syn_instance syn_instance; -void synaesthesia_init (); +void synaesthesia_init (void); syn_instance *synaesthesia_new (guint resx, guint resy); void synaesthesia_close (syn_instance * si); -- 2.7.4