summaryrefslogtreecommitdiff
path: root/isgps.c
diff options
context:
space:
mode:
authorChris Kuethe <chris.kuethe@gmail.com>2009-01-06 16:54:11 +0000
committerChris Kuethe <chris.kuethe@gmail.com>2009-01-06 16:54:11 +0000
commitf35514c36eecc3bd6c045e6cb8021ef455738f29 (patch)
treebfc5d550182ab357c11856b19493bbae566fe2b9 /isgps.c
parenta8974da3fe795f007f31c547d63662260d4d6ec6 (diff)
downloadgpsd-f35514c36eecc3bd6c045e6cb8021ef455738f29.tar.gz
fix format warning
Diffstat (limited to 'isgps.c')
-rw-r--r--isgps.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/isgps.c b/isgps.c
index 80d45029..1158d7f7 100644
--- a/isgps.c
+++ b/isgps.c
@@ -209,17 +209,17 @@ enum isgpsstat_t isgps_decode(struct gps_packet_t *session,
} else {
session->isgps.curr_word |= c >> -(session->isgps.curr_offset);
}
- gpsd_report(ISGPS_ERRLEVEL_BASE+2, "ISGPS syncing at byte %d: %0x%08x\n", session->char_counter, session->isgps.curr_word);
+ gpsd_report(ISGPS_ERRLEVEL_BASE+2, "ISGPS syncing at byte %lu: 0x%08x\n", session->char_counter, session->isgps.curr_word);
if (preamble_match(&session->isgps.curr_word)) {
if (isgps_parityok(session->isgps.curr_word)) {
- gpsd_report(ISGPS_ERRLEVEL_BASE+1,
+ gpsd_report(ISGPS_ERRLEVEL_BASE+1,
"ISGPS preamble ok, parity ok -- locked\n");
session->isgps.locked = true;
/* session->isgps.curr_offset; XXX - testing */
break;
}
- gpsd_report(ISGPS_ERRLEVEL_BASE+1,
+ gpsd_report(ISGPS_ERRLEVEL_BASE+1,
"ISGPS preamble ok, parity fail\n");
}
session->isgps.curr_offset++;