From 0a37d70aa58095c211bed13c191e5005483fe78c Mon Sep 17 00:00:00 2001 From: das Date: Sat, 12 Nov 2005 02:01:10 +0000 Subject: typo --- generic/tclBasic.c | 4 ++-- 1 file 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); } -- cgit v0.12