summaryrefslogtreecommitdiff
path: root/isgps.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2008-07-12 20:54:02 +0000
committerEric S. Raymond <esr@thyrsus.com>2008-07-12 20:54:02 +0000
commit51fee69486a6f918c5e0d745e6bc94fccb1b5386 (patch)
treedbff401ff77ac15ec1dcf9e682f81e6bec2f3344 /isgps.c
parent7ed1903d1365d911a57ef7f255f95cb583a41d56 (diff)
downloadgpsd-51fee69486a6f918c5e0d745e6bc94fccb1b5386.tar.gz
Cosmetic changes.
Diffstat (limited to 'isgps.c')
-rw-r--r--isgps.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/isgps.c b/isgps.c
index b818d71a..80d45029 100644
--- a/isgps.c
+++ b/isgps.c
@@ -109,7 +109,7 @@ unsigned int isgps_parity(isgps30bits_t th)
#define PARITY_28 0x5763e680u
#define PARITY_29 0x6bb1f340u
#define PARITY_30 0x8b7a89c0u
- isgps30bits_t t;
+ isgps30bits_t t;
unsigned int p;
/*
@@ -191,7 +191,7 @@ enum isgpsstat_t isgps_decode(struct gps_packet_t *session,
/* ASCII characters 64-127, @ through DEL */
if ((c & MAG_TAG_MASK) != MAG_TAG_DATA) {
gpsd_report(ISGPS_ERRLEVEL_BASE+1,
- "ISGPS word tag not correct, skipping\n");
+ "ISGPS word tag not correct, skipping byte\n");
return ISGPS_SKIP;
}
@@ -297,14 +297,14 @@ enum isgpsstat_t isgps_decode(struct gps_packet_t *session,
}
}
session->isgps.curr_offset -= 6;
- gpsd_report(ISGPS_ERRLEVEL_BASE+2, "residual %d\n", session->isgps.curr_offset);
+ gpsd_report(ISGPS_ERRLEVEL_BASE+2, "ISGPS residual %d\n", session->isgps.curr_offset);
return res;
}
/*@ +shiftnegative @*/
/* never achieved lock */
gpsd_report(ISGPS_ERRLEVEL_BASE+1,
- "lock never achieved\n");
+ "ISGPS lock never achieved\n");
return ISGPS_NO_SYNC;
}
/*@ +usereleased +compdef @*/