File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 59
59
// dwgps.c claims to only support GPSD_API_MAJOR_VERSION 5, but also builds successfully with
60
60
// GPSD_API_MAJOR_VERSION 6 provided by libgps22 when the attached patch is applied.
61
61
62
- // Also compatible with API 7 & 8 with conditional compilation later.
62
+ // Also compatible with API 7, 8 and 9 with conditional compilation later.
63
63
64
- #if GPSD_API_MAJOR_VERSION < 5 || GPSD_API_MAJOR_VERSION > 8
64
+ #if GPSD_API_MAJOR_VERSION < 5 || GPSD_API_MAJOR_VERSION > 9
65
65
#error libgps API version might be incompatible.
66
66
#endif
67
67
@@ -423,7 +423,8 @@ int main (int argc, char *argv[])
423
423
while (1 ) {
424
424
dwfix_t fix ;
425
425
426
- fix = dwgps_read (& info ) ;
426
+ fix = dwgps_read (& info )
427
+ ;
427
428
text_color_set (DW_COLOR_INFO );
428
429
switch (fix ) {
429
430
case DWFIX_2D :
You can’t perform that action at this time.
0 commit comments