From d660117f7a727fd3843852b643ceaf0bfe47a361 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Sun, 14 Feb 2016 07:17:53 +0000 Subject: [PATCH] Formatting --- airspy_adsb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airspy_adsb.c b/airspy_adsb.c index 36df2f5..e636dbb 100644 --- a/airspy_adsb.c +++ b/airspy_adsb.c @@ -8,7 +8,7 @@ bool airspy_adsb_parse(struct buf *buf, struct packet *packet) { if (buf->length < 1 || *buf_at(buf, 0) != '*') { return false; } - if (buf->length >= 35 && *buf_at(buf, 34) == '\n') { + if (buf->length >= 35 && *buf_at(buf, 34) == '\n') { buf_consume(buf, 35); return true; }