From 58d359fdc338d8c4bb1d6aeb0b84a4554d3d53c6 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 5 Apr 2018 16:59:59 +0200 Subject: Add newline to progress output when operation completes --- src/ideviceinstaller.c | 3 +++ 1 file changed, 3 insertions(+) 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 */ -- cgit v1.1-32-gdbae