summaryrefslogtreecommitdiff
path: root/sirfmon.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2006-10-26 21:06:58 +0000
committerEric S. Raymond <esr@thyrsus.com>2006-10-26 21:06:58 +0000
commitfd4454fe36da611eef7d3c75918ac5a4d5c0c12c (patch)
treed3251d8fe02e0728b5e06cee682a02fcf5f99e0a /sirfmon.c
parent8c4c1b38e7db2adc24528912d20486d386764327 (diff)
downloadgpsd-fd4454fe36da611eef7d3c75918ac5a4d5c0c12c.tar.gz
Partial splint cleanup.
Diffstat (limited to 'sirfmon.c')
-rw-r--r--sirfmon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sirfmon.c b/sirfmon.c
index 7b70c330..e2c842cc 100644
--- a/sirfmon.c
+++ b/sirfmon.c
@@ -445,11 +445,11 @@ static void decode_sirf(unsigned char buf[], int len)
total 3 x 12 = 36 bytes
******************************************************************/
- touchwin(mid27win);
+ (void)touchwin(mid27win);
display(mid27win, 1, 14, " ");
display(mid27win, 1, 14, "%s", dgpsvec[(int)getub(buf, 1)]);
for (i = j = 0; i < 12; i++) {
- touchwin(mid27win);
+ (void)touchwin(mid27win);
if (/*@i1@*/getub(buf, 16+3*i) != '\0') {
(void)wprintw(mid27win, " %d=%d", getub(buf, 16+3*i), getsw(buf, 16+3*i+1));
j++;