util/spkmodem-recv: reduce indent in print_char()

Signed-off-by: Leah Rowe <leah@libreboot.org>
fsdg20230625
Leah Rowe 2023-06-04 17:05:24 +01:00
parent b21c1dd5e8
commit b40a30b11b
1 changed files with 6 additions and 6 deletions

View File

@ -112,13 +112,13 @@ print_char(void)
#endif #endif
if (f1 < FREQ_DATA_THRESHOLD) if (f1 < FREQ_DATA_THRESHOLD)
ascii |= (1 << ascii_bit); ascii |= (1 << ascii_bit);
if (!ascii_bit) { if (ascii_bit)
return;
#if DEBUG #if DEBUG
printf("<%c, %x>", ascii, ascii); printf("<%c, %x>", ascii, ascii);
#else #else
printf("%c", ascii); printf("%c", ascii);
#endif #endif
ascii_bit = 7; ascii_bit = 7;
ascii = 0; ascii = 0;
}
} }