Fixed indentation in a line of C code.

This commit is contained in:
Project Nayuki 2019-07-22 17:31:19 +00:00
parent a492346364
commit 42f753cfcf

View File

@ -59,7 +59,7 @@ int main(void) {
for (size_t i = 0; i < length; i++) {
int b;
if (scanf("%d", &b) != 1)
return EXIT_FAILURE;
return EXIT_FAILURE;
data[i] = (uint8_t)b;
isAscii &= 0 < b && b < 128;
}