Another Indentation Fix

This commit is contained in:
Carver Harrison 2021-07-06 16:35:21 -07:00 committed by GitHub
parent eb33edf9ee
commit 6e82bd0e2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -286,8 +286,8 @@ refresh:
print("%c", buffer[i]);
}
// switch to token type 2 after equals sign
if (token_type == TOK_EQUALS) token_type = TOK_VALUE;
// switch to token type 2 after equals sign
if (token_type == TOK_EQUALS) token_type = TOK_VALUE;
}
}