1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-20 02:17:07 +00:00

fix whitespace

This commit is contained in:
mrdudz
2022-08-27 02:14:52 +02:00
parent 41b29d5c81
commit 168f42bb83
+2 -2
View File
@@ -7,13 +7,13 @@ int main(void)
c_label:
asm("inx\n"
"bne %g\n",
c_label);
c_label);
// this does not work
c_label2:
asm("inx\n"
"bne %g \n",
c_label2);
c_label2);
return EXIT_SUCCESS;
}