]> git.sur5r.net Git - cc65/blobdiff - src/cc65/codeseg.c
Fix missing spaces
[cc65] / src / cc65 / codeseg.c
index 297d09c4f0a75e521894aca5c1e0cdd63de96477..e2fd84a7c953bc09a5063d9d56581e4df38d3209 100644 (file)
@@ -429,7 +429,7 @@ static CodeEntry* ParseInsn (CodeSeg* S, LineInfo* LI, const char* L)
         /* If we don't have the label, it's a forward ref - create it unless
         ** it's an external function.
         */
-        if (Label == 0 && (OPC->OPC != OP65_JMP || IsLocalLabelName(Arg)) ) {
+        if (Label == 0 && (OPC->OPC != OP65_JMP || IsLocalLabelName (Arg)) ) {
             /* Generate a new label */
             Label = CS_NewCodeLabel (S, Arg, Hash);
         }