1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

sim65/main.c spaces were requested

This commit is contained in:
bbbradsmith 2019-05-29 16:47:58 -04:00 committed by Oliver Schmidt
parent 9fcd91ebe9
commit 7e4c4ee53e

View File

@ -159,7 +159,7 @@ static unsigned char ReadProgramFile (void)
}
/* Verify the header signature */
for (I=0; I<HEADER_SIGNATURE_LENGTH; ++I) {
for (I = 0; I < HEADER_SIGNATURE_LENGTH; ++I) {
if ((Val = fgetc(F)) != HeaderSignature[I]) {
Error ("'%s': Invalid header signature.", ProgramFile);
}