From 126ae0d3de576f623f1611725ff9b4a00057ce19 Mon Sep 17 00:00:00 2001 From: subtly Date: Fri, 24 Jul 2015 20:17:51 -0400 Subject: [PATCH] typo --- libdevcore/Log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libdevcore/Log.cpp b/libdevcore/Log.cpp index 96cda820e..6d44cdfd6 100644 --- a/libdevcore/Log.cpp +++ b/libdevcore/Log.cpp @@ -185,7 +185,7 @@ void dev::setThreadName(string const& _n) { #if defined(__linux__) pthread_setname_np(pthread_self(), _n.c_str()); -#elsif defined(__APPLE__) +#elif defined(__APPLE__) pthread_setname_np(_n.c_str()); #else g_logThreadName.m_name.reset(new std::string(_n));