1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

remove dangling spaces

This commit is contained in:
mrdudz 2022-04-17 16:08:04 +02:00
parent 9d3cdc5a10
commit eec62257c7

View File

@ -8,7 +8,7 @@ int main (void)
putchar ('\n');
} else if (C == 0x7F) {
putchar ('\t');
} else {
} else {
putchar (C);
}
}