summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-03-15 00:48:38 +0000
committerDavid Robillard <d@drobilla.net>2011-03-15 00:48:38 +0000
commit81033bfafd35e0179d1522c61f209cc5e0ac387d (patch)
tree7d652c7d709a66a193c86c0e2944773123cc0b1c /src
parent0cc371c6486a5eea6ad1fb2aa16f79e3cbeb3cd2 (diff)
downloadraul-81033bfafd35e0179d1522c61f209cc5e0ac387d.tar.gz
raul-81033bfafd35e0179d1522c61f209cc5e0ac387d.tar.bz2
raul-81033bfafd35e0179d1522c61f209cc5e0ac387d.zip
Fix errors caught by GCC 4.5.2.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@3083 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/Thread.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}