summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/sync.c
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-03-13 03:47:29 +0100
committerDan McGee <dan@archlinux.org>2012-03-13 03:47:29 +0100
commit5bda38196fbd6ad389fd829924736b007732e2f1 (patch)
treee43ad11db81a7b72254517e9b406fc64cf20f2f9 /lib/libalpm/sync.c
parent8de0631edbd1fd7681f6a924f5e166621328c13f (diff)
downloadpacman-5bda38196fbd6ad389fd829924736b007732e2f1.tar.gz
pacman-5bda38196fbd6ad389fd829924736b007732e2f1.tar.xz
Minor format-string related cleanups
We had one stubbed out so we didn't require a translation update, and the other is more a code style issue. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/sync.c')
-rw-r--r--lib/libalpm/sync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c
index 69d27af9..e84679a0 100644
--- a/lib/libalpm/sync.c
+++ b/lib/libalpm/sync.c
@@ -1187,7 +1187,7 @@ int _alpm_sync_commit(alpm_handle_t *handle, alpm_list_t **data)
_alpm_log(handle, ALPM_LOG_DEBUG, "checking available disk space\n");
if(_alpm_check_diskspace(handle) == -1) {
- _alpm_log(handle, ALPM_LOG_ERROR, "%s\n", _("not enough free disk space"));
+ _alpm_log(handle, ALPM_LOG_ERROR, _("not enough free disk space\n"));
return -1;
}