[xiph-commits] r13552 - trunk/sushivision

xiphmont at svn.xiph.org xiphmont at svn.xiph.org
Wed Aug 15 16:01:44 PDT 2007


Author: xiphmont
Date: 2007-08-15 16:01:44 -0700 (Wed, 15 Aug 2007)
New Revision: 13552

Modified:
   trunk/sushivision/example_fractal.c
   trunk/sushivision/sushivision.h
Log:
Minor prototype corrections



Modified: trunk/sushivision/example_fractal.c
===================================================================
--- trunk/sushivision/example_fractal.c	2007-08-15 22:56:18 UTC (rev 13551)
+++ trunk/sushivision/example_fractal.c	2007-08-15 23:01:44 UTC (rev 13552)
@@ -51,7 +51,7 @@
 int main(int argc, char *argv[]){
 
   // before any gtk, gdk or glib setup
-  sv_init(&argc,&argv);
+  sv_init();
   
   //g_thread_init (NULL);
   //gtk_init (&argc, &argv);

Modified: trunk/sushivision/sushivision.h
===================================================================
--- trunk/sushivision/sushivision.h	2007-08-15 22:56:18 UTC (rev 13551)
+++ trunk/sushivision/sushivision.h	2007-08-15 23:01:44 UTC (rev 13552)
@@ -45,9 +45,9 @@
 int sv_load(char *filename);
 
 /* toplevel ******************************************************/
-extern int sv_init();
-extern int sv_go();
-extern int sv_join();
+extern int sv_init(void);
+extern int sv_go(void);
+extern int sv_join(void);
 
 /* scales ********************************************************/
 



More information about the commits mailing list