1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2025-12-08 06:42:44 +00:00

eliminate switch(long)

SCCS-file: zic.c
SCCS-SID: 2.2
This commit is contained in:
Arthur David Olson
1986-07-25 20:17:42 -04:00
committed by Paul Eggert
parent b70f952fb6
commit ac7344cb1f

2
zic.c
View File

@ -521,7 +521,7 @@ char * name;
if (nfields > 0) /* non-blank line */
if ((lp = byword(fields[0], line_codes)) == NULL)
error("input line of unknown type");
else switch (lp->l_value) {
else switch ((int) (lp->l_value)) {
case LC_RULE:
inrule(fields, nfields);
break;