diff options
author | Nikias Bassen | 2018-04-05 16:59:59 +0200 |
---|---|---|
committer | Nikias Bassen | 2018-04-05 16:59:59 +0200 |
commit | 58d359fdc338d8c4bb1d6aeb0b84a4554d3d53c6 (patch) | |
tree | 7e5a6aec6c11b9b0f9bc7de336ed77551d05909d | |
parent | abd479d1d8695e68d59e5a0273732f4d0f7b9a83 (diff) | |
download | ideviceinstaller-58d359fdc338d8c4bb1d6aeb0b84a4554d3d53c6.tar.gz ideviceinstaller-58d359fdc338d8c4bb1d6aeb0b84a4554d3d53c6.tar.bz2 |
Add newline to progress output when operation completes
-rw-r--r-- | src/ideviceinstaller.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ideviceinstaller.c b/src/ideviceinstaller.c index ea91bd5..f45326f 100644 --- a/src/ideviceinstaller.c +++ b/src/ideviceinstaller.c @@ -187,6 +187,9 @@ static void status_cb(plist_t command, plist_t status, void *unused) } else { printf("\r%s: %s", command_name, status_name); } + if (command_completed) { + printf("\n"); + } } } else { /* report error to the user */ |