summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-28 01:12:54 +0000
committerDavid Robillard <d@drobilla.net>2011-04-28 01:12:54 +0000
commit4378875d3c74b4fa501e92d6e11837c7fe67c525 (patch)
tree33bb04eaa572209b8d5867c364e1150705c1e64f /src
parentd29b00ab9361ca3624807858f2c1c1b3c1507ada (diff)
downloadraul-4378875d3c74b4fa501e92d6e11837c7fe67c525.tar.gz
raul-4378875d3c74b4fa501e92d6e11837c7fe67c525.tar.bz2
raul-4378875d3c74b4fa501e92d6e11837c7fe67c525.zip
Fix compilation on MinGW/Windows.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@3206 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/Thread.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Thread.cpp b/src/Thread.cpp
index 8a84779..8c89707 100644
--- a/src/Thread.cpp
+++ b/src/Thread.cpp
@@ -108,7 +108,6 @@ Thread::stop()
pthread_cancel(_pthread);
pthread_join(_pthread, NULL);
}
- _pthread = 0;
_pthread_exists = false;
LOG(info) << "Exiting thread" << endl;
}