From 9bc7a528d6ff42211f8d19ffa8ab2c2d371ea8d0 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Sat, 29 Mar 2014 19:51:17 +0100 Subject: Add newline at end of some info and error messages where it's missing --- src/idevicerestore.c | 4 ++-- src/normal.c | 4 ++-- 2 files changed, 4 insertions(+), 4 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 { diff --git a/src/normal.c b/src/normal.c index 57d2ec2..4193b7f 100644 --- a/src/normal.c +++ b/src/normal.c @@ -105,12 +105,12 @@ static int normal_idevice_new(struct idevicerestore_client_t* client, idevice_t* } device_error = idevice_new(&dev, devices[j]); if (device_error != IDEVICE_E_SUCCESS) { - error("ERROR: %s: can't open device with UDID %s", __func__, devices[j]); + error("ERROR: %s: can't open device with UDID %s\n", __func__, devices[j]); continue; } if (lockdownd_client_new(dev, &lockdown, "idevicerestore") != LOCKDOWN_E_SUCCESS) { - error("ERROR: %s: can't connect to lockdownd on device with UDID %s", __func__, devices[j]); + error("ERROR: %s: can't connect to lockdownd on device with UDID %s\n", __func__, devices[j]); continue; } -- cgit v1.1-32-gdbae