ovs-thread: Fix missing space.
authorWilliam Tu <u9012063@gmail.com>
Fri, 29 Jan 2016 23:27:55 +0000 (15:27 -0800)
committerJustin Pettit <jpettit@ovn.org>
Fri, 29 Jan 2016 13:54:33 +0000 (05:54 -0800)
Signed-off-by: William Tu <u9012063@gmail.com>
Signed-off-by: Justin Pettit <jpettit@ovn.org>
lib/ovs-thread.c

index 7855b3a..6ebda07 100644 (file)
@@ -119,7 +119,7 @@ TRY_LOCK_FUNCTION(rwlock, trywrlock);
         l->where = WHERE; \
         error = pthread_##TYPE##_##FUN(&l->lock); \
         if (OVS_UNLIKELY(error)) { \
-            ovs_abort(error, "pthread_%s_%sfailed", #TYPE, #FUN); \
+            ovs_abort(error, "pthread_%s_%s failed", #TYPE, #FUN); \
         } \
     }
 UNLOCK_FUNCTION(mutex, unlock, "<unlocked>");