summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/ardour/ardour/session_event.h2
-rw-r--r--libs/ardour/session_events.cc2
-rw-r--r--libs/pbd/pool.cc10
3 files changed, 7 insertions, 7 deletions
diff --git a/libs/ardour/ardour/session_event.h b/libs/ardour/ardour/session_event.h
index 0b29596408..a8c17a1ddb 100644
--- a/libs/ardour/ardour/session_event.h
+++ b/libs/ardour/ardour/session_event.h
@@ -134,7 +134,7 @@ public:
static const framepos_t Immediate = -1;
- static bool has_per_thread_pool ();
+ static bool has_per_thread_pool ();
static void create_per_thread_pool (const std::string& n, uint32_t nitems);
static void init_event_pool ();
diff --git a/libs/ardour/session_events.cc b/libs/ardour/session_events.cc
index f375781143..7d8cbdc274 100644
--- a/libs/ardour/session_events.cc
+++ b/libs/ardour/session_events.cc
@@ -45,7 +45,7 @@ SessionEvent::init_event_pool ()
bool
SessionEvent::has_per_thread_pool ()
{
- return pool->has_per_thread_pool ();
+ return pool->has_per_thread_pool ();
}
void
diff --git a/libs/pbd/pool.cc b/libs/pbd/pool.cc
index 404fab60e3..ccdb85b6c6 100644
--- a/libs/pbd/pool.cc
+++ b/libs/pbd/pool.cc
@@ -181,11 +181,11 @@ PerThreadPool::create_per_thread_pool (string n, unsigned long isize, unsigned l
bool
PerThreadPool::has_per_thread_pool ()
{
- CrossThreadPool* p = _key.get();
- if (p) {
- return true;
- }
- return false;
+ CrossThreadPool* p = _key.get();
+ if (p) {
+ return true;
+ }
+ return false;
}