summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Grandin <grandinp@gmail.com>2018-04-26 23:05:12 -0700
committerPierre Grandin <grandinp@gmail.com>2018-04-26 23:05:12 -0700
commitde8303d46df6fc023fcbaa3c729f9793e34068ed (patch)
tree1b323ae3e4e4fd89244dcc6bf7ffa6f0362c5ded
parentb385b7d5151c8aaec50214ecb9a3fcdc4f2ccd59 (diff)
downloadnavit-fix_log_replay.tar.gz
Fixed typosfix_log_replay
-rw-r--r--navit/track.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/navit/track.c b/navit/track.c
index 840c259f1..146972f46 100644
--- a/navit/track.c
+++ b/navit/track.c
@@ -671,11 +671,11 @@ tracking_update(struct tracking *tr, struct vehicle *v, struct vehicleprofile *v
}
if (!vehicle_get_attr(tr->vehicle, attr_position_speed, &speed_attr, NULL) ||
!vehicle_get_attr(tr->vehicle, attr_position_direction, &direction_attr, NULL) ||
- !vehicle_get_attr(tr->vehicle, attr_position_coord_geo, &coord_geo, NULL) ||
+ !vehicle_get_attr(tr->vehicle, attr_position_coord_geo, &coord_geo, NULL)) {
dbg(lvl_error,"failed to get position data %d %d %d",
vehicle_get_attr(tr->vehicle, attr_position_speed, &speed_attr, NULL),
vehicle_get_attr(tr->vehicle, attr_position_direction, &direction_attr, NULL),
- vehicle_get_attr(tr->vehicle, attr_position_coord_geo, &coord_geo, NULL),
+ vehicle_get_attr(tr->vehicle, attr_position_coord_geo, &coord_geo, NULL));
return;
}
if (tr->tunnel_extrapolation) {