1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

Separate targets on -Qi/-Si with a newline.

This fixes FS#11331

The newline was lost with commit 9451b2e4f2.

Signed-off-by: Xavier Chantry <shiningxc@gmail.com>
This commit is contained in:
Xavier Chantry 2008-08-28 20:55:26 +02:00
parent afac773d19
commit 95ea6fb3c1

View File

@ -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);
}