1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2026-05-06 21:36:01 +00:00

minor optimization

SCCS-file: scheck.c
SCCS-SID: 7.4
This commit is contained in:
Arthur David Olson
1985-11-17 20:30:59 -05:00
committed by Paul Eggert
parent 9764dd3513
commit cb2769ddac

View File

@@ -44,9 +44,9 @@ char * format;
*tp++ = *fp++;
continue;
}
*tp++ = '*';
if (*fp == '*')
*tp++ = *fp++;
else *tp++ = '*';
++fp;
while (*fp != '\0' && isascii(*fp) && isdigit(*fp))
*tp++ = *fp++;
if (*fp == 'l')