summaryrefslogtreecommitdiffstats
path: root/src/idevicerestore.c
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2014-03-29 19:51:17 +0100
committerGravatar Martin Szulecki2014-03-29 19:51:17 +0100
commit9bc7a528d6ff42211f8d19ffa8ab2c2d371ea8d0 (patch)
treea2dd90af0febc43b1baaa76f80190da93a9852e6 /src/idevicerestore.c
parent39f6c99ba98427363713fc9f37adc6ffb16adf8c (diff)
downloadidevicerestore-9bc7a528d6ff42211f8d19ffa8ab2c2d371ea8d0.tar.gz
idevicerestore-9bc7a528d6ff42211f8d19ffa8ab2c2d371ea8d0.tar.bz2
Add newline at end of some info and error messages where it's missing
Diffstat (limited to 'src/idevicerestore.c')
-rw-r--r--src/idevicerestore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/idevicerestore.c b/src/idevicerestore.c
index 0c53948..c294475 100644
--- a/src/idevicerestore.c
+++ b/src/idevicerestore.c
@@ -596,11 +596,11 @@ int idevicerestore_start(struct idevicerestore_client_t* client)
if (client->flags & FLAG_SHSHONLY) {
if (!tss_enabled) {
- info("This device does not require a TSS record");
+ info("This device does not require a TSS record\n");
return 0;
}
if (!client->tss) {
- error("ERROR: could not fetch TSS record");
+ error("ERROR: could not fetch TSS record\n");
plist_free(buildmanifest);
return -1;
} else {