View | Details | Raw Unified | Return to bug 196105
Collapse All | Expand All

(-)astro/gpxloggerd/files/patch-gpxloggerd.c (+11 lines)
Line 0 Link Here
1
--- gpxloggerd.c.orig	2011-03-24 15:54:08.000000000 +0100
2
+++ gpxloggerd.c	2014-12-18 21:05:00.000000000 +0100
3
@@ -196,7 +196,7 @@ process(struct gps_data_t *gpsdata)
4
 		pt = ot;
5
 
6
 	/* -I filter */
7
-	if (abs(t - ot) < interval)
8
+	if (labs(t - ot) < interval)
9
 		return;
10
 
11
 	if (minmove || minbearing)

Return to bug 196105