Skip to content
Snippets Groups Projects
Commit bbfa42ec authored by Leah Rowe's avatar Leah Rowe
Browse files

util/spkmodem_recv: Tidy up global variables


They do not need to be initialised zero, because
global variables are always zero by default,
unless set differently by the programmer.

Signed-off-by: default avatarLeah Rowe <leah@libreboot.org>
parent 3ba3a1f4
Branches
No related merge requests found
......@@ -23,9 +23,7 @@
signed short frame[2 * SAMPLES_PER_FRAME];
signed short pulse[2 * SAMPLES_PER_FRAME];
int f1, f2;
int lp = 0;
int ascii_bit = 7;
int f1, f2, lp, ascii_bit = 7;
char ascii = 0;
void handle_audio(void);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment