]> Shamusworld >> Repos - rmac/blobdiff - token.c
Version bump for last patch. :-)
[rmac] / token.c
diff --git a/token.c b/token.c
index 124179fc8013e38372bc829c7632fb7895dd9180..30f529d018b95084e621a18c99cf272df071e5b7 100644 (file)
--- a/token.c
+++ b/token.c
@@ -314,10 +314,10 @@ int ExpandMacro(char * src, char * dest, int destsiz)
                        if (dst >= edst)
                                goto overflow;
 
-            // Skip comments in case a loose @ or \ is in there
-            // In that case the tokeniser was trying to expand it.
-            if (*s == '*' || *s == ';' || ((*s == '/') && (*(s + 1) == '/')))
-                goto skipcomments;
+                       // Skip comments in case a loose @ or \ is in there
+                       // In that case the tokeniser was trying to expand it.
+                       if (*s == '*' || *s == ';' || ((*s == '/') && (*(s + 1) == '/')))
+                               goto skipcomments;
 
                        *dst++ = *s++;
                }