summaryrefslogtreecommitdiff
path: root/driver_italk.c
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2016-08-15 17:29:38 -0700
committerGary E. Miller <gem@rellim.com>2016-08-15 17:29:38 -0700
commit51500bbd427387bb1847f6d00364091f2bc4f455 (patch)
treeec4d3526ac189f466c31cafe290e1311774eae80 /driver_italk.c
parente67e4118a0cbb5b5cecc62e7440299d0b5b35a37 (diff)
downloadgpsd-51500bbd427387bb1847f6d00364091f2bc4f455.tar.gz
uint was rmoved in C99. If gpsd enforce C99, then uint must go.
uint is now unsigned int.
Diffstat (limited to 'driver_italk.c')
-rw-r--r--driver_italk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver_italk.c b/driver_italk.c
index 15d1d990..ce949e11 100644
--- a/driver_italk.c
+++ b/driver_italk.c
@@ -281,7 +281,7 @@ static gps_mask_t italk_parse(struct gps_device_t *session,
if (len == 0)
return 0;
- type = (uint) getub(buf, 4);
+ type = (unsigned int) getub(buf, 4);
/* we may need to dump the raw packet */
gpsd_log(&session->context->errout, LOG_RAW,
"raw italk packet type 0x%02x\n", type);