summaryrefslogtreecommitdiffstats
path: root/src/iphone.c
diff options
context:
space:
mode:
authorGravatar Matt Colyer2009-01-13 23:48:39 -0800
committerGravatar Matt Colyer2009-01-13 23:48:39 -0800
commitbced0730e878aefebb53732702d8dd34486697a2 (patch)
tree0c7f846d5f1f68117a37bb8245b27a2db36dbcb3 /src/iphone.c
parentdc165be9172878144da2fba50139748db32d2986 (diff)
downloadlibimobiledevice-bced0730e878aefebb53732702d8dd34486697a2.tar.gz
libimobiledevice-bced0730e878aefebb53732702d8dd34486697a2.tar.bz2
Removed fprintf, use the debug message method.
Diffstat (limited to 'src/iphone.c')
-rw-r--r--src/iphone.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iphone.c b/src/iphone.c
index 1f68180..457d919 100644
--- a/src/iphone.c
+++ b/src/iphone.c
@@ -151,7 +151,7 @@ static iphone_error_t iphone_get_specific_device(unsigned int bus_n, int dev_n,
// Check for correct version
if (ntohl(version->major) == 1 && ntohl(version->minor) == 0) {
// We're all ready to roll.
- fprintf(stderr, "get_iPhone() success\n");
+ log_debug_msg("get_iPhone() success\n");
free(version);
*device = phone;
return IPHONE_E_SUCCESS;