summaryrefslogtreecommitdiffstats
path: root/src/sbservices.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2014-10-26 14:48:26 +0100
committerGravatar Martin Szulecki2014-10-26 14:48:26 +0100
commit6ec65baf4bcb520c0c0f0734cc6b354ccc070e96 (patch)
treef2ea782c5f4ae4f728ec09a702381242be8dd5fb /src/sbservices.c
parentb3702104e85a8f8ec99e4e724f70516218e19ee9 (diff)
downloadlibimobiledevice-6ec65baf4bcb520c0c0f0734cc6b354ccc070e96.tar.gz
libimobiledevice-6ec65baf4bcb520c0c0f0734cc6b354ccc070e96.tar.bz2
Remove obsolete prefix from debug messages in internal locking helpers
Diffstat (limited to 'src/sbservices.c')
-rw-r--r--src/sbservices.c4
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 @@
35 */ 35 */
36static void sbs_lock(sbservices_client_t client) 36static void sbs_lock(sbservices_client_t client)
37{ 37{
38 debug_info("SBServices: Locked"); 38 debug_info("Locked");
39 mutex_lock(&client->mutex); 39 mutex_lock(&client->mutex);
40} 40}
41 41
@@ -46,7 +46,7 @@ static void sbs_lock(sbservices_client_t client)
46 */ 46 */
47static void sbs_unlock(sbservices_client_t client) 47static void sbs_unlock(sbservices_client_t client)
48{ 48{
49 debug_info("SBServices: Unlocked"); 49 debug_info("Unlocked");
50 mutex_unlock(&client->mutex); 50 mutex_unlock(&client->mutex);
51} 51}
52 52