summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/interthread_info.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-07-11 11:50:25 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-07-11 11:50:25 -0400
commit157e21369e691bfb089e2a8c095ebbd50cd0da8e (patch)
tree9526a655c54ffb8cd81e4bbe6a3c3942045b2c4b /libs/ardour/ardour/interthread_info.h
parent227cf470babb4d5be068f0e4e8aa7bc06125fc1a (diff)
Use default constructor for pthread_t in InterthreadInfo ctor
Diffstat (limited to 'libs/ardour/ardour/interthread_info.h')
-rw-r--r--libs/ardour/ardour/interthread_info.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/ardour/interthread_info.h b/libs/ardour/ardour/interthread_info.h
index 01cacf437c..a06fc649ca 100644
--- a/libs/ardour/ardour/interthread_info.h
+++ b/libs/ardour/ardour/interthread_info.h
@@ -29,7 +29,7 @@ namespace ARDOUR {
class InterThreadInfo {
public:
- InterThreadInfo () : done (false), cancel (false), progress (0), thread (0) {}
+ InterThreadInfo () : done (false), cancel (false), progress (0), thread () {}
volatile bool done;
volatile bool cancel;