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 b60d669acaa550247088cc43c3eb4b56dab5330c..92abd399a3081cca4858b598057815c1ce5451c4 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 ae1aba4d76dc41beab2d6b4de0eae36470a34f66..fe41a9a1981fb56eb6c7ddba8f15e997f7f15c3c 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);