From 4c153d2f34b0228e398ef3d1d935004dba6a9318 Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Mon, 25 Apr 2011 16:59:04 +0100 Subject: [PATCH] gravmutex = NULL not liked by some compilers (It's not actually correct anyway) --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index ae62efcff..e40da3d3c 100644 --- a/src/main.c +++ b/src/main.c @@ -186,8 +186,8 @@ sign signs[MAXSIGNS]; int numCores = 4; -pthread_t gravthread;// = NULL; -pthread_mutex_t gravmutex = NULL; +pthread_t gravthread; +pthread_mutex_t gravmutex; int grav_ready = 0; int core_count()