synaestesia: Fix old-style prototype
authorEdward Hervey <bilboed@bilboed.com>
Wed, 24 Mar 2010 18:35:03 +0000 (19:35 +0100)
committerEdward Hervey <bilboed@bilboed.com>
Wed, 24 Mar 2010 18:35:03 +0000 (19:35 +0100)
gst/synaesthesia/synaescope.c
gst/synaesthesia/synaescope.h

index b60d669..92abd39 100644 (file)
@@ -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;
index ae1aba4..fe41a9a 100644 (file)
@@ -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);