diff options
author | redman <redman> | 1999-08-13 17:53:19 (GMT) |
---|---|---|
committer | redman <redman> | 1999-08-13 17:53:19 (GMT) |
commit | 5298b4644f21ac9bf40d0dec83f716650d942ed9 (patch) | |
tree | 3b9f3738301e5628a78f4a8e7c839d0261241552 /generic | |
parent | 36ea59d725dc903b5283cdf979ff4eb3c6a434ff (diff) | |
download | tcl-5298b4644f21ac9bf40d0dec83f716650d942ed9.zip tcl-5298b4644f21ac9bf40d0dec83f716650d942ed9.tar.gz tcl-5298b4644f21ac9bf40d0dec83f716650d942ed9.tar.bz2 |
Fixed bad function definition, should use void instead of VOID for
return type (does not return "void *").
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclTest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c index 0872322..c9b2c2b 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.15 1999/08/04 15:58:42 redman Exp $ + * RCS: @(#) $Id: tclTest.c,v 1.16 1999/08/13 17:53:19 redman Exp $ */ #define TCL_TEST @@ -2746,7 +2746,7 @@ TestregexpObjCmd(dummy, interp, objc, objv) *---------------------------------------------------------------------- */ -static VOID +static void TestregexpXflags(string, length, cflagsPtr, eflagsPtr) char *string; /* The string of flags. */ int length; /* The length of the string in bytes. */ |