summaryrefslogtreecommitdiffstats
path: root/src/normal.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/normal.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/normal.c')
-rw-r--r--src/normal.c4
1 files changed, 2 insertions, 2 deletions
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;
}