summaryrefslogtreecommitdiff
path: root/isgps.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2010-04-14 16:03:42 -0400
committerEric S. Raymond <esr@thyrsus.com>2010-04-14 16:03:42 -0400
commit97e3982cd5a28fd39b13b6f238ceaeb337b04d80 (patch)
tree4d5280085f9028f7690d1710ae1268b4ab648796 /isgps.c
parent9f03f20ed9970b0305555485241b74cb0607bb0f (diff)
downloadgpsd-97e3982cd5a28fd39b13b6f238ceaeb337b04d80.tar.gz
More GNU indent pragmas.
Diffstat (limited to 'isgps.c')
-rw-r--r--isgps.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/isgps.c b/isgps.c
index 97d3aa31..4c89ad40 100644
--- a/isgps.c
+++ b/isgps.c
@@ -282,13 +282,14 @@ enum isgpsstat_t isgps_decode(struct gps_packet_t *session,
session->isgps.buf[session->isgps.bufindex] =
session->isgps.curr_word;
+ /* *INDENT-OFF* */
if ((session->isgps.bufindex == 0) &&
- !preamble_match((isgps30bits_t *) session->isgps.
- buf)) {
+ !preamble_match((isgps30bits_t *) session->isgps.buf)) {
gpsd_report(ISGPS_ERRLEVEL_BASE + 1,
"ISGPS word 0 not a preamble- punting\n");
return ISGPS_NO_SYNC;
}
+ /* *INDENT-ON* */
session->isgps.bufindex++;
if (length_check(session)) {