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
if (f1 < FREQ_DATA_THRESHOLD)
ascii |= (1 << ascii_bit);
if (!ascii_bit) {
if (ascii_bit)
return;
#if DEBUG
printf("<%c, %x>", ascii, ascii);
printf("<%c, %x>", ascii, ascii);
#else
printf("%c", ascii);
printf("%c", ascii);
#endif
ascii_bit = 7;
ascii = 0;
}
ascii_bit = 7;
ascii = 0;
}