diff options
author | Timo Teräs <timo.teras@iki.fi> | 2018-11-02 15:33:49 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2018-11-02 15:40:45 +0200 |
commit | 59271f8c1382efc6b52ac20c862ef7126317d0a8 (patch) | |
tree | be0a8bea54c8e7875ca6a62d58fc5deb44b92953 /src | |
parent | f38d1f74af7a5ef0ccee2029be0d8036b9020f1a (diff) | |
download | apk-tools-59271f8c1382efc6b52ac20c862ef7126317d0a8.tar.gz apk-tools-59271f8c1382efc6b52ac20c862ef7126317d0a8.tar.bz2 apk-tools-59271f8c1382efc6b52ac20c862ef7126317d0a8.tar.xz apk-tools-59271f8c1382efc6b52ac20c862ef7126317d0a8.zip |
print: don't print spurious newlines
Diffstat (limited to 'src')
-rw-r--r-- | src/print.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/print.c b/src/print.c index 63be863..b2bbca4 100644 --- a/src/print.c +++ b/src/print.c @@ -100,10 +100,10 @@ void apk_print_progress(size_t done, size_t total) int apk_print_indented(struct apk_indent *i, apk_blob_t blob) { - if (i->x + blob.len + 1 >= apk_get_screen_width()) - i->x = printf("\n%*s" BLOB_FMT, i->indent, "", BLOB_PRINTF(blob)) - 1; - else if (i->x <= i->indent) + if (i->x <= i->indent) i->x += printf("%*s" BLOB_FMT, i->indent - i->x, "", BLOB_PRINTF(blob)); + else if (i->x + blob.len + 1 >= apk_get_screen_width()) + i->x = printf("\n%*s" BLOB_FMT, i->indent, "", BLOB_PRINTF(blob)) - 1; else i->x += printf(" " BLOB_FMT, BLOB_PRINTF(blob)); apk_progress_force = 1; |