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 <aaronmgriffin@gmail.com>
This commit is contained in:
parent
f2f4ada1d6
commit
cb3c3a920d
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
_alpm_log(PM_LOG_DEBUG, "unlinking %s\n", file);
|
||||||
|
|
||||||
if(unlink(file) == -1) {
|
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));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue