Skip to content

Commit de98f26

Browse files
committed
walk96: fix builing errors (api mismatch)
1 parent 6f8ac80 commit de98f26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/walk96.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ int main (int argc, char *argv[])
8686
// USB GPS happens to be COM22
8787

8888
memset (&config, 0, sizeof(config));
89-
strlcpy (config.gpsnmea_port, "COM22", sizeof(config.nmea_port));
89+
strlcpy (config.gpsnmea_port, "COM22", sizeof(config.gpsnmea_port));
9090

9191
dwgps_init (&config, debug_gps);
9292

@@ -152,7 +152,7 @@ static void walk96 (int fix, double lat, double lon, float knots, float course,
152152

153153

154154
info_len = encode_position (messaging, compressed,
155-
lat, lon, (int)(DW_METERS_TO_FEET(alt)),
155+
lat, lon, 0, (int)(DW_METERS_TO_FEET(alt)),
156156
'/', '=',
157157
G_UNKNOWN, G_UNKNOWN, G_UNKNOWN, "", // PHGd
158158
(int)roundf(course), (int)roundf(knots),

0 commit comments

Comments
 (0)