From: spth Date: Sun, 13 Jul 2008 10:50:09 +0000 (+0000) Subject: Fixed typo in comment X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=6d80c1e2df4c906c8294760c0fb7c9c5e7d99b90;p=fw%2Fsdcc Fixed typo in comment git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@5199 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 31cb09aa..228c241d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,10 @@ +2008-07-13 Philipp Klaus Krause + * src/port.h: Fixed typo in comment + 2008-07-12 Philipp Klaus Krause - * src/z80/mapping.i: Implemented RFE #1919415 + * src/z80/mappings.i: Implemented RFE #1919415 * src/z80/peeph-z80.def: Implemented RFE #1919415, #1861376, - #1880202, #1914434, prepared for RFE #1703943. + #1880202, #1914434, prepared for RFE #1703943 2008-07-12 Philipp Klaus Krause diff --git a/src/port.h b/src/port.h index 3363aa68..1533620f 100644 --- a/src/port.h +++ b/src/port.h @@ -42,7 +42,7 @@ typedef struct builtins { char *name; /* name of builtin function */ - char *rtype; /* return type as string : see typefromStr */ + char *rtype; /* return type as string : see typeFromStr */ int nParms; /* number of parms : max 8 */ char *parm_types[MAX_BUILTIN_ARGS]; /* each parm type as string : see typeFromStr */ } builtins;