From 55f3536d78b8b169a324932f7a2ff35cc5942834 Mon Sep 17 00:00:00 2001 From: johanknol Date: Mon, 5 Feb 2001 20:24:12 +0000 Subject: [PATCH] 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 --- src/SDCCerr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.47.2