diff options
author | Martin Szulecki | 2011-04-26 16:06:19 +0200 |
---|---|---|
committer | Martin Szulecki | 2011-04-26 16:06:19 +0200 |
commit | 9752fd03b80115c56f1112489a66d5d5b7f2a42c (patch) | |
tree | 7f3b2840a8618d39e0813bb69a62f2af58ef7329 | |
parent | d46fe8186ceba38b4f3eddd4b9d01a57fd777f22 (diff) | |
download | libimobiledevice-9752fd03b80115c56f1112489a66d5d5b7f2a42c.tar.gz libimobiledevice-9752fd03b80115c56f1112489a66d5d5b7f2a42c.tar.bz2 |
idevicebackup4: No need to print "Description:" infront of error code messages
-rw-r--r-- | tools/idevicebackup4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/idevicebackup4.c b/tools/idevicebackup4.c index 0d18338..f91d3e3 100644 --- a/tools/idevicebackup4.c +++ b/tools/idevicebackup4.c @@ -1465,7 +1465,7 @@ checkpoint: } if (error_code != 0) { if (str) { - printf("ErrorCode %d: Description: %s\n", error_code, str); + printf("ErrorCode %d: %s\n", error_code, str); } else { printf("ErrorCode %d: (Unknown)\n", error_code); } |