summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2002-02-01 17:17:58 (GMT)
committervincentdarley <vincentdarley>2002-02-01 17:17:58 (GMT)
commit0281522268fc4906ad494a550c1c3a27285714ff (patch)
treec41d7930428254308c63d0c6d68f5dc7acd234e5
parent1b7efea2c81d4f18ad2abe2e7a7a2a62f0dd7452 (diff)
downloadtcl-0281522268fc4906ad494a550c1c3a27285714ff.zip
tcl-0281522268fc4906ad494a550c1c3a27285714ff.tar.gz
tcl-0281522268fc4906ad494a550c1c3a27285714ff.tar.bz2
tclTest.c fix
-rw-r--r--ChangeLog5
-rw-r--r--generic/tclTest.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d05effa..39f050e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-02-01 Vince Darley <vincentdarley@users.sourceforge.net>
+
+ * generic/tclTest.c: fix to picky windows compiler problem
+ with the 'MainLoop' function declaration.
+
2002-01-31 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* win/tclWinFCmd.c: TIP 27: Applied patch fixing CONST warnings on
diff --git a/generic/tclTest.c b/generic/tclTest.c
index 8119004..d220a9f 100644
--- a/generic/tclTest.c
+++ b/generic/tclTest.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclTest.c,v 1.41 2002/01/25 20:40:55 dgp Exp $
+ * RCS: @(#) $Id: tclTest.c,v 1.42 2002/02/01 17:17:59 vincentdarley Exp $
*/
#define TCL_TEST
@@ -4267,7 +4267,7 @@ TestmainthreadCmd (dummy, interp, argc, argv)
*/
static void
-MainLoop()
+MainLoop(void)
{
while (!exitMainLoop) {
Tcl_DoOneEvent(0);