changeset 12405:57a0c8fc4bbc

[gaim-migrate @ 14712] void prototype fix. This should be correct, but can someone double check that Tcl under win32 still compiles? committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Thu, 08 Dec 2005 20:58:05 +0000
parents 7c7cb03e5475
children bc45ab9756b5
files plugins/tcl/tcl_win32.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/tcl/tcl_win32.c	Thu Dec 08 20:57:48 2005 +0000
+++ b/plugins/tcl/tcl_win32.c	Thu Dec 08 20:58:05 2005 +0000
@@ -27,7 +27,7 @@
 #include <tk.h>
 #endif
 
-typedef Tcl_Interp* (CALLBACK* LPFNTCLCREATEINTERP)();
+typedef Tcl_Interp* (CALLBACK* LPFNTCLCREATEINTERP)(void);
 typedef void        (CALLBACK* LPFNTKINIT)(Tcl_Interp*);
 
 LPFNTCLCREATEINTERP wtcl_CreateInterp = NULL;