From 877e3cfbb05f465ad18a4fdcc5d89ba59b34b629 Mon Sep 17 00:00:00 2001 From: erdgeist <> Date: Wed, 17 Jun 2009 15:07:38 +0000 Subject: Remove unnecessary =NULL initialization of static pointers. --- ot_mutex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ot_mutex.c') diff --git a/ot_mutex.c b/ot_mutex.c index 2052ffa..772d936 100644 --- a/ot_mutex.c +++ b/ot_mutex.c @@ -123,7 +123,7 @@ struct ot_task { }; static ot_taskid next_free_taskid = 1; -static struct ot_task *tasklist = NULL; +static struct ot_task *tasklist; static pthread_mutex_t tasklist_mutex; static pthread_cond_t tasklist_being_filled; -- cgit v1.2.3