diff options
| author | 2018-04-05 16:59:59 +0200 | |
|---|---|---|
| committer | 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) | |||
| 187 | } else { | 187 | } else { |
| 188 | printf("\r%s: %s", command_name, status_name); | 188 | printf("\r%s: %s", command_name, status_name); |
| 189 | } | 189 | } |
| 190 | if (command_completed) { | ||
| 191 | printf("\n"); | ||
| 192 | } | ||
| 190 | } | 193 | } |
| 191 | } else { | 194 | } else { |
| 192 | /* report error to the user */ | 195 | /* report error to the user */ |
