cansequence: codingstyle cleanups

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
Marc Kleine-Budde
2020-10-14 18:02:32 +02:00
parent 1e0fb39e8b
commit 0bcb5d9c2c
+2 -2
View File
@@ -30,7 +30,6 @@ extern int optind, opterr, optopt;
static int s = -1; static int s = -1;
static bool running = true; static bool running = true;
static bool infinite = true; static bool infinite = true;
static bool sequence_init = true;
static unsigned int drop_until_quit; static unsigned int drop_until_quit;
static unsigned int drop_count; static unsigned int drop_count;
static bool use_poll = false; static bool use_poll = false;
@@ -90,6 +89,7 @@ static void do_receive()
}; };
struct cmsghdr *cmsg; struct cmsghdr *cmsg;
const int dropmonitor_on = 1; const int dropmonitor_on = 1;
bool sequence_init = true;
unsigned int seq_wrap = 0; unsigned int seq_wrap = 0;
uint8_t sequence = 0; uint8_t sequence = 0;
ssize_t nbytes; ssize_t nbytes;
@@ -117,7 +117,7 @@ static void do_receive()
} }
if (sequence_init) { if (sequence_init) {
sequence_init = 0; sequence_init = false;
sequence = frame.data[0]; sequence = frame.data[0];
} }