From: johanknol Date: Mon, 5 Feb 2001 20:28:02 +0000 (+0000) Subject: oops :) X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=b4c5710d48e45adb9960c6236f6e0bf92795abde;p=fw%2Fsdcc oops :) git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@586 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/SDCCast.c b/src/SDCCast.c index fffd3b8a..18a035a1 100644 --- a/src/SDCCast.c +++ b/src/SDCCast.c @@ -585,7 +585,7 @@ int processParms (ast *func, value *defParm, /* if defined parameters present but no actual parameters */ if ( defParm && ! actParm) { - werror(E_TO_FEW_PARMS); + werror(E_TOO_FEW_PARMS); return 1; } @@ -652,7 +652,7 @@ int processParms (ast *func, value *defParm, } else { /* if more defined parameters present but no more actual parameters */ if (defParm->next) { - werror(E_TO_FEW_PARMS); + werror(E_TOO_FEW_PARMS); return 1; } }