From cb3c3a920d976942fbc72b2d9dbff5320ca9415c Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Thu, 27 Sep 2007 21:18:06 -0500 Subject: Minor "cannot remove" message cleanup The strings differed in quotes only, this way we have only one i18n string for translation Signed-off-by: Aaron Griffin --- lib/libalpm/remove.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c index 7fbf675a..07fd0235 100644 --- a/lib/libalpm/remove.c +++ b/lib/libalpm/remove.c @@ -241,7 +241,8 @@ static void unlink_file(pmpkg_t *info, alpm_list_t *lp, pmtrans_t *trans) _alpm_log(PM_LOG_DEBUG, "unlinking %s\n", file); if(unlink(file) == -1) { - _alpm_log(PM_LOG_ERROR, _("cannot remove file %s: %s\n"), lp->data, strerror(errno)); + _alpm_log(PM_LOG_ERROR, _("cannot remove file '%s': %s\n"), + lp->data, strerror(errno)); } } } -- cgit v1.2.3-24-g4f1b