Fix coding style in gtkmain.c.

This commit is contained in:
Sergey Cherepanov 2012-11-26 11:39:59 +11:00 committed by Lassi Kortela
parent c4c11e6896
commit 90eb17ce78
1 changed files with 0 additions and 2 deletions

View File

@ -48,13 +48,11 @@ static Object P_Gtk_Init (Object args) {
} }
gtk_init (&argc, &argv); gtk_init (&argc, &argv);
free (argv); free (argv);
return Void; return Void;
} }
static Object P_Gtk_Main () { static Object P_Gtk_Main () {
gtk_main (); gtk_main ();
return Void; return Void;
} }