From 6e3585e77ced752036d1dd3ce2aa64a9e07eca5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Fri, 12 Jul 2013 20:42:05 +0200 Subject: [PATCH] Remove a redundant assert.. --- src/timers.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/timers.c b/src/timers.c index 7db0cc2..ed399dc 100644 --- a/src/timers.c +++ b/src/timers.c @@ -57,7 +57,6 @@ void uc_timers_add(struct UCTimers *timers, struct UCTimer *timer, int sec, int assert(timer->callback != NULL); if (timer->callback == NULL) { //must be set. - assert(timer->callback != NULL); return; }