mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-23 07:19:24 +02:00
util/spkmodem_recv: Reduced indentation in loop
Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -67,8 +67,11 @@ main ()
|
||||
if (llp == FLUSH_TIMEOUT)
|
||||
fflush (stdout);
|
||||
|
||||
if (f2 > FREQ_SEP_MIN && f2 < FREQ_SEP_MAX
|
||||
&& f1 > FREQ_DATA_MIN && f1 < FREQ_DATA_MAX) {
|
||||
if (f2 <= FREQ_SEP_MIN || f2 >= FREQ_SEP_MAX
|
||||
|| f1 <= FREQ_DATA_MIN || f1 >= FREQ_DATA_MAX) {
|
||||
read_sample ();
|
||||
continue;
|
||||
}
|
||||
#if DEBUG
|
||||
printf ("%d %d %d @%d\n", f1, f2, FREQ_DATA_THRESHOLD,
|
||||
ftell (stdin) - sizeof (trame));
|
||||
@@ -89,9 +92,6 @@ main ()
|
||||
llp = 0;
|
||||
for (i = 0; i < SAMPLES_PER_TRAME; i++)
|
||||
read_sample ();
|
||||
continue;
|
||||
}
|
||||
read_sample ();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user