From 6ec65baf4bcb520c0c0f0734cc6b354ccc070e96 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Sun, 26 Oct 2014 14:48:26 +0100 Subject: Remove obsolete prefix from debug messages in internal locking helpers --- src/notification_proxy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/notification_proxy.c') diff --git a/src/notification_proxy.c b/src/notification_proxy.c index 541e429..ecfb052 100644 --- a/src/notification_proxy.c +++ b/src/notification_proxy.c @@ -45,7 +45,7 @@ struct np_thread { */ static void np_lock(np_client_t client) { - debug_info("NP: Locked"); + debug_info("Locked"); mutex_lock(&client->mutex); } @@ -56,7 +56,7 @@ static void np_lock(np_client_t client) */ static void np_unlock(np_client_t client) { - debug_info("NP: Unlocked"); + debug_info("Unlocked"); mutex_unlock(&client->mutex); } -- cgit v1.1-32-gdbae