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/sbservices.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/sbservices.c') diff --git a/src/sbservices.c b/src/sbservices.c index 20f0b5f..ffe3d1a 100644 --- a/src/sbservices.c +++ b/src/sbservices.c @@ -35,7 +35,7 @@ */ static void sbs_lock(sbservices_client_t client) { - debug_info("SBServices: Locked"); + debug_info("Locked"); mutex_lock(&client->mutex); } @@ -46,7 +46,7 @@ static void sbs_lock(sbservices_client_t client) */ static void sbs_unlock(sbservices_client_t client) { - debug_info("SBServices: Unlocked"); + debug_info("Unlocked"); mutex_unlock(&client->mutex); } -- cgit v1.1-32-gdbae