Formatting

This commit is contained in:
Ian Gulliver
2016-02-14 07:17:53 +00:00
parent f7bee3ce44
commit d660117f7a

View File

@@ -8,7 +8,7 @@ bool airspy_adsb_parse(struct buf *buf, struct packet *packet) {
if (buf->length < 1 || *buf_at(buf, 0) != '*') { if (buf->length < 1 || *buf_at(buf, 0) != '*') {
return false; return false;
} }
if (buf->length >= 35 && *buf_at(buf, 34) == '\n') { if (buf->length >= 35 && *buf_at(buf, 34) == '\n') {
buf_consume(buf, 35); buf_consume(buf, 35);
return true; return true;
} }