mirror of
https://frontier.innolan.net/rainlance/amiga-tz.git
synced 2025-11-24 01:53:19 +00:00
minor optimization
SCCS-file: scheck.c SCCS-SID: 7.8
This commit is contained in:
committed by
Paul Eggert
parent
c50c9940b3
commit
2fede59c6b
2
scheck.c
2
scheck.c
@ -49,7 +49,7 @@ char * format;
|
|||||||
*tp++ = '*';
|
*tp++ = '*';
|
||||||
if (*fp == '*')
|
if (*fp == '*')
|
||||||
++fp;
|
++fp;
|
||||||
while (*fp != '\0' && isascii(*fp) && isdigit(*fp))
|
while (isascii(*fp) && isdigit(*fp))
|
||||||
*tp++ = *fp++;
|
*tp++ = *fp++;
|
||||||
if (*fp == 'l')
|
if (*fp == 'l')
|
||||||
*tp++ = *fp++;
|
*tp++ = *fp++;
|
||||||
|
|||||||
Reference in New Issue
Block a user