fixed an error message

This commit is contained in:
Aurelien Foret 2005-03-27 07:43:13 +00:00
parent 4ad99832b5
commit 350a3972d1
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ int pacman_deptest(list_t *targets)
/* we create a transaction to hold a dummy package to be able to use
* deps checkings from alpm_trans_prepare() */
if(alpm_trans_init(PM_TRANS_TYPE_ADD, 0, NULL) == -1) {
ERR(NL, "error: %s\n", alpm_strerror(pm_errno));
ERR(NL, "%s", alpm_strerror(pm_errno));
return(1);
}