Core: Remove unused variable
Vicki Pfau vi@endrift.com
Wed, 18 Jan 2017 23:40:33 -0800
1 files changed,
0 insertions(+),
2 deletions(-)
jump to
M
src/core/timing.c
→
src/core/timing.c
@@ -55,13 +55,11 @@ }
} bool mTimingIsScheduled(const struct mTiming* timing, const struct mTimingEvent* event) { - struct mTimingEvent* const* previous = &timing->root; const struct mTimingEvent* next = timing->root; while (next) { if (next == event) { return true; } - previous = &next->next; next = next->next; } return false;