From 09ce8b446c01e59a0eb0523846ce6f339ef25fa5 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 28 Feb 2011 17:50:23 -0600 Subject: Fix some easy to find double translations A lot of these were places that should have used the same message but didn't, or were very easy to convert to using the same message and letting some of the burden off of the translators. Signed-off-by: Dan McGee --- lib/libalpm/sync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libalpm/sync.c') diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c index fdd37608..29197807 100644 --- a/lib/libalpm/sync.c +++ b/lib/libalpm/sync.c @@ -900,7 +900,7 @@ int _alpm_sync_commit(pmtrans_t *trans, pmdb_t *db_local, alpm_list_t **data) _alpm_log(PM_LOG_DEBUG, "checking available disk space\n"); if(_alpm_check_diskspace(trans, handle->db_local) == -1) { - _alpm_log(PM_LOG_ERROR, _("not enough free disk space\n")); + _alpm_log(PM_LOG_ERROR, "%s\n", _("not enough free disk space")); goto error; } -- cgit v1.2.3-54-g00ecf