diff options
author | Xavier Chantry <shiningxc@gmail.com> | 2008-08-28 20:55:26 +0200 |
---|---|---|
committer | Xavier Chantry <shiningxc@gmail.com> | 2008-08-28 20:55:26 +0200 |
commit | 95ea6fb3c19a8d72d5b2e71ab5e37f2da8c77d5d (patch) | |
tree | 634d2f48364f32fd502a841aa9a04f73844b7e99 /src | |
parent | afac773d1936cbd0ea18ea94155f21dcf9411fb7 (diff) | |
download | pacman-95ea6fb3c19a8d72d5b2e71ab5e37f2da8c77d5d.tar.xz |
Separate targets on -Qi/-Si with a newline.
This fixes FS#11331
The newline was lost with commit 9451b2e4f23a3c566fcfe3420c379b3cb3eb1f90.
Signed-off-by: Xavier Chantry <shiningxc@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/package.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pacman/package.c b/src/pacman/package.c index fddce94a..71be2d8c 100644 --- a/src/pacman/package.c +++ b/src/pacman/package.c @@ -135,9 +135,11 @@ void dump_pkg_full(pmpkg_t *pkg, int level) /* Print additional package info if info flag passed more than once */ if(level > 1) { dump_pkg_backups(pkg); - printf("\n"); } + /* final newline to separate packages */ + printf("\n"); + FREELIST(depstrings); } |