diff options
Diffstat (limited to 'src/sbservices.c')
-rw-r--r-- | src/sbservices.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |