diff options
author | Dan McGee <dan@archlinux.org> | 2011-01-12 01:52:30 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-01-12 04:15:24 +0100 |
commit | 55bff19b7692e01a0bf276c742c77f03fb445160 (patch) | |
tree | df142a980c1d595cf47b16f77742b26dc626fe04 | |
parent | fe6e90c21f1561ee54deedbc707f5afc964d3cae (diff) | |
download | pacman-55bff19b7692e01a0bf276c742c77f03fb445160.tar.gz pacman-55bff19b7692e01a0bf276c742c77f03fb445160.tar.xz |
Unify two free diskspace error messages
Although they won't be the same in the gettext catalog because of the '\n'
we should still use the same text.
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | lib/libalpm/error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/error.c b/lib/libalpm/error.c index 4dab9fa5..1b144a5a 100644 --- a/lib/libalpm/error.c +++ b/lib/libalpm/error.c @@ -58,7 +58,7 @@ const char SYMEXPORT *alpm_strerror(int err) case PM_ERR_WRONG_ARGS: return _("wrong or NULL argument passed"); case PM_ERR_DISK_SPACE: - return _("not enough disk space"); + return _("not enough free disk space"); /* Interface */ case PM_ERR_HANDLE_NULL: return _("library not initialized"); |