summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authordas <das>2005-11-12 02:01:10 (GMT)
committerdas <das>2005-11-12 02:01:10 (GMT)
commit0a37d70aa58095c211bed13c191e5005483fe78c (patch)
tree04358618a89ec61ee3a8b6b437f9571983617fff /generic
parentaa09a89af2ce6249362d9dce493aa49eb8863462 (diff)
downloadtcl-0a37d70aa58095c211bed13c191e5005483fe78c.zip
tcl-0a37d70aa58095c211bed13c191e5005483fe78c.tar.gz
tcl-0a37d70aa58095c211bed13c191e5005483fe78c.tar.bz2
typo
Diffstat (limited to 'generic')
-rw-r--r--generic/tclBasic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index d419fbd..ace490a 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.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: tclBasic.c,v 1.178 2005/11/11 23:50:06 dkf Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.179 2005/11/12 02:01:10 das Exp $
*/
#include "tclInt.h"
@@ -5778,7 +5778,7 @@ MathFuncWrongNumArgs(
TclNewObj(errorMessage);
TclObjPrintf(NULL, errorMessage,
"too %s arguments for math function \"%s\"",
- (found < expected ? "few", "many"), name);
+ (found < expected ? "few" : "many"), name);
Tcl_SetObjResult(interp, errorMessage);
}