# HG changeset patch # User Richard Laager # Date 1134075349 0 # Node ID 8d1cf3f847b152bc79b866a0057743103a025dcc # Parent 4ee5f1e45ec2f5e22934ce155826db4da3aac41d [gaim-migrate @ 14704] void prototype fix. committer: Tailor Script diff -r 4ee5f1e45ec2 -r 8d1cf3f847b1 plugins/docklet/docklet-x11.c --- a/plugins/docklet/docklet-x11.c Thu Dec 08 20:55:27 2005 +0000 +++ b/plugins/docklet/docklet-x11.c Thu Dec 08 20:55:49 2005 +0000 @@ -42,7 +42,7 @@ static int embed_timeout = 0; /* protos */ -static void docklet_x11_create(); +static void docklet_x11_create(void); static gboolean docklet_x11_create_cb() diff -r 4ee5f1e45ec2 -r 8d1cf3f847b1 plugins/filectl.c --- a/plugins/filectl.c Thu Dec 08 20:55:27 2005 +0000 +++ b/plugins/filectl.c Thu Dec 08 20:55:49 2005 +0000 @@ -29,8 +29,8 @@ static int check; static time_t mtime; -static void init_file(); -static gboolean check_file(); +static void init_file(void); +static gboolean check_file(void); /* parse char * as if were word array */ char *getarg(char *, int, int); diff -r 4ee5f1e45ec2 -r 8d1cf3f847b1 plugins/notify.c --- a/plugins/notify.c Thu Dec 08 20:55:27 2005 +0000 +++ b/plugins/notify.c Thu Dec 08 20:55:49 2005 +0000 @@ -114,8 +114,8 @@ static void method_toggle_cb(GtkWidget *widget, gpointer data); static void notify_toggle_cb(GtkWidget *widget, gpointer data); static gboolean options_entry_cb(GtkWidget *widget, GdkEventFocus *event, gpointer data); -static void apply_method(); -static void apply_notify(); +static void apply_method(void); +static void apply_notify(void); /* string function */ static void handle_string(GaimGtkWindow *gaimwin); diff -r 4ee5f1e45ec2 -r 8d1cf3f847b1 plugins/spellchk.c --- a/plugins/spellchk.c Thu Dec 08 20:55:27 2005 +0000 +++ b/plugins/spellchk.c Thu Dec 08 20:55:49 2005 +0000 @@ -1737,7 +1737,7 @@ static GtkWidget *good_entry; static GtkWidget *complete_toggle; -static void save_list(); +static void save_list(void); static void on_edited(GtkCellRendererText *cellrenderertext, gchar *path, gchar *arg2, gpointer data) diff -r 4ee5f1e45ec2 -r 8d1cf3f847b1 plugins/tcl/tcl_signals.c --- a/plugins/tcl/tcl_signals.c Thu Dec 08 20:55:27 2005 +0000 +++ b/plugins/tcl/tcl_signals.c Thu Dec 08 20:55:49 2005 +0000 @@ -35,7 +35,7 @@ static GList *tcl_callbacks; static void *tcl_signal_callback(va_list args, struct tcl_signal_handler *handler); -static Tcl_Obj *new_cb_namespace (); +static Tcl_Obj *new_cb_namespace (void); void tcl_signal_init() {