X-Git-Url: http://ecere.com/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=compiler%2Flibec%2Fsrc%2Fshortcuts.ec;h=2e3951e26332f3a3c92318d22fa40d531559e3f0;hb=8ee80ec2b5c2317d48ff1ac4b3a886a5d1bed7aa;hp=f95fc76b02a9bc39e7703ddb191faf226624984a;hpb=6bad27e666389fc889502c26e7474a361f0ed80c;p=sdk diff --git a/compiler/libec/src/shortcuts.ec b/compiler/libec/src/shortcuts.ec index f95fc76..2e3951e 100644 --- a/compiler/libec/src/shortcuts.ec +++ b/compiler/libec/src/shortcuts.ec @@ -34,7 +34,7 @@ Declarator PlugDeclarator(Declarator decl, Declarator baseDecl) } if(baseDecl) { - if(base.declarator) + if(base.declarator) FreeDeclarator(base.declarator); base.declarator = baseDecl; } @@ -126,7 +126,7 @@ char * QMkString(char * source) for(i = 0; (ch = source[i]); i++) { len++; - if(ch == '\"' || ch == '\\') + if(ch == '\"' || ch == '\\') len++; }