diff options
author | Dan McGee <dan@archlinux.org> | 2011-03-16 19:55:28 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-03-16 19:55:28 -0500 |
commit | e6c9076a74f72d7c5164e2154ce1f47f8886e6e5 (patch) | |
tree | 341489024952aec1813c7ce67bc45faf8c5b6441 /lib/libalpm/diskspace.c | |
parent | cff36093f3b778b3bda9c9d1a3acf24e36dd9f73 (diff) | |
parent | 308aa38a40fb26d535f0b874bb64fe987126d03f (diff) | |
download | pacman-e6c9076a74f72d7c5164e2154ce1f47f8886e6e5.tar.xz |
Merge branch 'maint'
Diffstat (limited to 'lib/libalpm/diskspace.c')
-rw-r--r-- | lib/libalpm/diskspace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libalpm/diskspace.c b/lib/libalpm/diskspace.c index bfc63e78..892b1aac 100644 --- a/lib/libalpm/diskspace.c +++ b/lib/libalpm/diskspace.c @@ -168,7 +168,7 @@ static int calculate_removed_size(const alpm_list_t *mount_points, mp = match_mount_point(mount_points, path); if(mp == NULL) { _alpm_log(PM_LOG_WARNING, - _("could not determine mount point for file %s"), filename); + _("could not determine mount point for file %s\n"), filename); continue; } @@ -230,7 +230,7 @@ static int calculate_installed_size(const alpm_list_t *mount_points, mp = match_mount_point(mount_points, path); if(mp == NULL) { _alpm_log(PM_LOG_WARNING, - _("could not determine mount point for file %s"), filename); + _("could not determine mount point for file %s\n"), filename); continue; } |