From 6f484c04bdb719b786932fe297fdf648b2d87c9f Mon Sep 17 00:00:00 2001 From: Lorenz Meier Date: Wed, 24 Feb 2016 11:47:08 +0100 Subject: [PATCH] Ashtech GPS driver: Fix code style --- src/drivers/gps/ashtech.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/gps/ashtech.cpp b/src/drivers/gps/ashtech.cpp index b1aabb84ca..e4a371e382 100644 --- a/src/drivers/gps/ashtech.cpp +++ b/src/drivers/gps/ashtech.cpp @@ -270,7 +270,7 @@ int ASHTECH::handle_message(int len) int num_of_sv __attribute__((unused)) = 0, fix_quality = 0; double track_true = 0.0, ground_speed = 0.0 , age_of_corr __attribute__((unused)) = 0.0; double hdop = 99.9, vdop = 99.9, pdop __attribute__((unused)) = 99.9, - tdop __attribute__((unused)) = 99.9, vertic_vel = 0.0; + tdop __attribute__((unused)) = 99.9, vertic_vel = 0.0; char ns = '?', ew = '?'; if (bufptr && *(++bufptr) != ',') { fix_quality = strtol(bufptr, &endp, 10); bufptr = endp; }