summaryrefslogtreecommitdiffstats
path: root/dev/msyncclient.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2009-11-19 21:47:29 +0100
committerGravatar Martin Szulecki2009-11-19 21:47:29 +0100
commitf2d94b69d8c4ced70b2fb7cee7e6c9464e2717af (patch)
tree9d46b61454523a9229ca8d499e7adfe93fa6599c /dev/msyncclient.c
parentb15705c7b8cf85df53d610bbe5dd34654cdadc6f (diff)
downloadlibimobiledevice-f2d94b69d8c4ced70b2fb7cee7e6c9464e2717af.tar.gz
libimobiledevice-f2d94b69d8c4ced70b2fb7cee7e6c9464e2717af.tar.bz2
Fix distcheck by removing usage of private function in dev tools
Diffstat (limited to 'dev/msyncclient.c')
-rw-r--r--dev/msyncclient.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/msyncclient.c b/dev/msyncclient.c
index 08092cb..53018ac 100644
--- a/dev/msyncclient.c
+++ b/dev/msyncclient.c
@@ -36,7 +36,7 @@ static char check_string(plist_t node, char* string)
plist_get_string_val(node, &msg);
}
if (PLIST_STRING != type || strcmp(msg, string)) {
- log_debug_msg("%s: ERROR: MobileSync client did not find %s !\n", __func__, string);
+ printf("%s: ERROR: MobileSync client did not find %s !\n", __func__, string);
ret = 0;
}
free(msg);