Fixed indentation in a line of C code.

pull/65/head
Project Nayuki 6 years ago
parent a492346364
commit 42f753cfcf

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

Loading…
Cancel
Save