index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Allan McRae <allan@archlinux.org> | 2011-03-12 10:32:20 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-03-16 19:52:54 -0500 |
commit | 771c002c98292c6567d0f4985d296e152c35166c (patch) | |
tree | a9981f4b3bfc4f6469d84fdae49fb89d7abea443 /lib/libalpm/diskspace.c | |
parent | f1ea4c8d241f2242aeeaa264bc42806853b0802e (diff) |
-rw-r--r-- | lib/libalpm/diskspace.c | 4 |
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; } |