diff options
author | Timo Teräs <timo.teras@iki.fi> | 2011-10-29 23:43:50 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2011-10-29 23:43:50 +0300 |
commit | cb5054e68627ee299c7fdc73e5b8b3d744f79fbe (patch) | |
tree | 49402579ba4e5e058df7c993722edccbc0448a6f | |
parent | 500f8d4a7d7b17871647392e79e4c7a17c210534 (diff) | |
download | apk-tools-cb5054e68627ee299c7fdc73e5b8b3d744f79fbe.tar.gz apk-tools-cb5054e68627ee299c7fdc73e5b8b3d744f79fbe.tar.bz2 apk-tools-cb5054e68627ee299c7fdc73e5b8b3d744f79fbe.tar.xz apk-tools-cb5054e68627ee299c7fdc73e5b8b3d744f79fbe.zip |
solver: fix indentation of package lists (in interactive mode)
broken in commit bfd53b59d2e62e17 (print: minor cleanup to indented writer).
-rw-r--r-- | src/solver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/solver.c b/src/solver.c index 8718423..1dfd2dc 100644 --- a/src/solver.c +++ b/src/solver.c @@ -1115,7 +1115,7 @@ static int dump_packages(struct apk_changeset *changeset, if (!cmp(change)) continue; if (match == 0) - printf("%s:\n ", msg); + printf("%s:\n", msg); if (change->newpkg != NULL) name = change->newpkg->name; else |