summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2014-10-22 17:22:34 +0200
committerGravatar Martin Szulecki2014-10-22 17:22:34 +0200
commit78e100ed92417f978732def92e07c6010ee33ce5 (patch)
tree12bbda6f4df172a784ff2a3068d7015f32f80e21
parentc5aef53c60055d9a18349e6fa8b8f135fb89f046 (diff)
downloadidevicerestore-78e100ed92417f978732def92e07c6010ee33ce5.tar.gz
idevicerestore-78e100ed92417f978732def92e07c6010ee33ce5.tar.bz2
asr: Remove two debug messages that are not really helpful
-rw-r--r--src/asr.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/asr.c b/src/asr.c
index c82d48c..9f87150 100644
--- a/src/asr.c
+++ b/src/asr.c
@@ -160,8 +160,6 @@ int asr_send(asr_client_t asr, plist_t data) {
return -1;
}
- debug("Sent %d bytes:\n", size);
-
if (buffer)
free(buffer);
return 0;
@@ -177,8 +175,6 @@ int asr_send_buffer(asr_client_t asr, const char* data, uint32_t size) {
return -1;
}
- //debug("Sent %d bytes buffer\n", bytes);
-
return 0;
}