diff options
author | Martin Szulecki | 2013-11-19 22:34:25 +0100 |
---|---|---|
committer | Martin Szulecki | 2013-11-19 22:34:25 +0100 |
commit | 2daf436af42718b3735921751604c584f7f55834 (patch) | |
tree | 6748731baf6a2d411a8759e162106e642f10468a /src | |
parent | 8b5bfa55de0f46d856d46e44b8ac9b7147b91fae (diff) | |
download | idevicerestore-2daf436af42718b3735921751604c584f7f55834.tar.gz idevicerestore-2daf436af42718b3735921751604c584f7f55834.tar.bz2 |
restore: Fix typo in error message
Diffstat (limited to 'src')
-rw-r--r-- | src/restore.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/restore.c b/src/restore.c index 2f578ab..eac2b06 100644 --- a/src/restore.c +++ b/src/restore.c @@ -1333,7 +1333,8 @@ int restore_send_baseband_data(restored_client_t restore, struct idevicerestore_ tss_request_add_baseband_tags(request, parameters); if (request == NULL) { - error("ERROR: Unable to create Baseand TSS request\n"); + error("ERROR: Unable to create Baseband TSS request\n"); + plist_free(parameters); return -1; } |