diff options
Diffstat (limited to 'src/waypoint.cpp')
-rw-r--r-- | src/waypoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/waypoint.cpp b/src/waypoint.cpp index 0916a887f..3d6ed983e 100644 --- a/src/waypoint.cpp +++ b/src/waypoint.cpp @@ -293,7 +293,7 @@ void WaypointsDailyLoop() /* Check if we need to delete a waypoint */ FOR_ALL_WAYPOINTS(wp) { - if (wp->deleted != 0 && --wp->deleted == 0) DeleteWaypoint(wp); + if (wp->deleted != 0 && --wp->deleted == 0) delete wp; } } |