From 81033bfafd35e0179d1522c61f209cc5e0ac387d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 15 Mar 2011 00:48:38 +0000 Subject: Fix errors caught by GCC 4.5.2. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@3083 a436a847-0d15-0410-975c-d299462d15a1 --- src/Thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/Thread.cpp b/src/Thread.cpp index 045db0f..a5a6e73 100644 --- a/src/Thread.cpp +++ b/src/Thread.cpp @@ -108,7 +108,7 @@ Thread::stop() pthread_cancel(_pthread); pthread_join(_pthread, NULL); } - _pthread = NULL; + _pthread = 0; _pthread_exists = false; LOG(info) << "Exiting thread" << endl; } -- cgit v1.2.1