From 368856f122303fd8db530a19a6100ebf010f8c32 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 10 Sep 2005 05:22:06 +0000 Subject: [PATCH] Fixed lines --- compiler/libpc300/sc2.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/compiler/libpc300/sc2.c b/compiler/libpc300/sc2.c index 34c56c21..bdeb16cf 100755 --- a/compiler/libpc300/sc2.c +++ b/compiler/libpc300/sc2.c @@ -1532,20 +1532,20 @@ static int substpattern(unsigned char *line,size_t buffersize,char *pattern,char strins((char*)s,(char*)args[arg],strlen((char*)args[arg])); s+=strlen((char*)args[arg]); e++; /* skip %, digit is skipped later */ - } else { - strins((char*)s,(char*)e,1); - s++; - } /* if */ + } else { + strins((char*)s,(char*)e,1); + s++; + } /* if */ } else if (*e=='"') { p=e; - if (is_startstring(e)) { /* skip strings */ + if (is_startstring(e)) { /* skip strings */ e=skipstring(e); strins((char*)s,(char*)p,(e-p+1)); s+=(e-p+1); - } else { + } else { strins((char*)s,(char*)e,1); s++; - } + } } else { strins((char*)s,(char*)e,1); s++;