summaryrefslogtreecommitdiff
path: root/jsongen.py.in
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2012-06-22 09:40:09 -0400
committerEric S. Raymond <esr@thyrsus.com>2012-06-22 09:40:09 -0400
commit6445eb8a85e41fd198b6d5e2d9da403c65edda81 (patch)
treee97d52ccf4657a597f4cf95370970f1111d31ef8 /jsongen.py.in
parent7422ff3015bb1f06651e61c7a9b33f082cc88b6c (diff)
downloadgpsd-6445eb8a85e41fd198b6d5e2d9da403c65edda81.tar.gz
Correct a field signedness error in the IMO236 Met/Hydro message.
Diffstat (limited to 'jsongen.py.in')
-rw-r--r--jsongen.py.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/jsongen.py.in b/jsongen.py.in
index 227a8f38..dd5ec473 100644
--- a/jsongen.py.in
+++ b/jsongen.py.in
@@ -311,7 +311,7 @@ ais_specs = (
('pressure', 'uinteger', 'DAC1FID11_PRESSURE_NOT_AVAILABLE'),
('pressuretend', 'uinteger', 'DAC1FID11_PRESSURETREND_NOT_AVAILABLE'),
('visibility', 'uinteger', 'DAC1FID11_VISIBILITY_NOT_AVAILABLE'),
- ('waterlevel', 'uinteger', 'DAC1FID11_WATERLEVEL_NOT_AVAILABLE'),
+ ('waterlevel', 'integer', 'DAC1FID11_WATERLEVEL_NOT_AVAILABLE'),
('leveltrend', 'uinteger', 'DAC1FID11_WATERLEVELTREND_NOT_AVAILABLE'),
('cspeed', 'uinteger', 'DAC1FID11_CSPEED_NOT_AVAILABLE'),
('cdir', 'uinteger', 'DAC1FID11_CDIR_NOT_AVAILABLE'),