summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2022-03-29 16:24:03 +0200
committerGravatar Nikias Bassen2022-03-29 16:24:03 +0200
commit1ac34c189d8e9cc7b05b17004066f6ae48afc19f (patch)
tree7b0efed801b6a38a9684f46af17561633523b3f0
parent25ca67d92589f9fec15c1c7d2f1f692ac748e547 (diff)
downloadlibimobiledevice-1ac34c189d8e9cc7b05b17004066f6ae48afc19f.tar.gz
libimobiledevice-1ac34c189d8e9cc7b05b17004066f6ae48afc19f.tar.bz2
idevice: Fix debug message showing function name twice
-rw-r--r--src/idevice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/idevice.c b/src/idevice.c
index 95c3aea..d6c1d06 100644
--- a/src/idevice.c
+++ b/src/idevice.c
@@ -648,7 +648,7 @@ LIBIMOBILEDEVICE_API idevice_error_t idevice_connection_send(idevice_connection_
}
sent += bytes;
}
- debug_info("internal_connection_send %d, sent %d", len, sent);
+ debug_info("len %d, sent %d", len, sent);
if (sent < len) {
*sent_bytes = 0;
return IDEVICE_E_NOT_ENOUGH_DATA;