From 9752fd03b80115c56f1112489a66d5d5b7f2a42c Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Tue, 26 Apr 2011 16:06:19 +0200 Subject: idevicebackup4: No need to print "Description:" infront of error code messages --- tools/idevicebackup4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- cgit v1.1-32-gdbae