From: johanknol Date: Mon, 5 Feb 2001 20:24:12 +0000 (+0000) Subject: fixed "too few arguments" for function calls X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=55f3536d78b8b169a324932f7a2ff35cc5942834;p=fw%2Fsdcc fixed "too few arguments" for function calls git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@585 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/SDCCerr.h b/src/SDCCerr.h index 4f7bb87f..ececca57 100644 --- a/src/SDCCerr.h +++ b/src/SDCCerr.h @@ -102,7 +102,7 @@ #define E_CODE_NO_INIT 99 /* vars in code space must have initializer */ #define E_OPS_INTEGRAL 100 /* operans must be integral for certian assignments */ #define E_TOO_MANY_PARMS 101 /* too many parameters */ -#define E_TO_FEW_PARMS 102 /* to few parameters */ +#define E_TOO_FEW_PARMS 102 /* to few parameters */ #define E_FUNC_NO_CODE 103 /* fatalError */ #define E_TYPE_MISMATCH_PARM 104 /* type mismatch for parameter */ #define E_INVALID_FLOAT_CONST 105 /* invalid floating point literal string */