From 7b6292a4fed8434b3344821bc7ee0ba1c90e124f Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sat, 2 Jun 2012 01:50:25 -0400 Subject: Clean up a couple of string-format errors. All regression tests pass. --- gpsdecode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gpsdecode.c') diff --git a/gpsdecode.c b/gpsdecode.c index cc257161..c510cc66 100644 --- a/gpsdecode.c +++ b/gpsdecode.c @@ -123,9 +123,9 @@ static void aivdm_csv_dump(struct ais_t *ais, char *buf, size_t buflen) ais->type6.dac235fid10.ana_ext2, ais->type6.dac235fid10.racon, ais->type6.dac235fid10.light, - ais->type6.dac235fid10.alarm, + (uint)ais->type6.dac235fid10.alarm, ais->type6.dac235fid10.stat_ext, - ais->type6.dac235fid10.off_pos); + (uint)ais->type6.dac235fid10.off_pos); imo = true; break; } -- cgit v1.2.1