removed an uneeded error code (DB_UPTODATE)
This commit is contained in:
parent
d6eeae2716
commit
ddcfaa1f5a
2 changed files with 0 additions and 3 deletions
|
@ -349,7 +349,6 @@ extern enum __pmerrno_t {
|
||||||
PM_ERR_DB_NOT_FOUND,
|
PM_ERR_DB_NOT_FOUND,
|
||||||
PM_ERR_DB_WRITE,
|
PM_ERR_DB_WRITE,
|
||||||
PM_ERR_DB_REMOVE,
|
PM_ERR_DB_REMOVE,
|
||||||
PM_ERR_DB_UPTODATE,
|
|
||||||
/* Configuration */
|
/* Configuration */
|
||||||
PM_ERR_OPT_LOGFILE,
|
PM_ERR_OPT_LOGFILE,
|
||||||
PM_ERR_OPT_DBPATH,
|
PM_ERR_OPT_DBPATH,
|
||||||
|
|
|
@ -57,8 +57,6 @@ char *alpm_strerror(int err)
|
||||||
return "could not update database";
|
return "could not update database";
|
||||||
case PM_ERR_DB_REMOVE:
|
case PM_ERR_DB_REMOVE:
|
||||||
return "could not remove database entry";
|
return "could not remove database entry";
|
||||||
case PM_ERR_DB_UPTODATE:
|
|
||||||
return "database is up to date";
|
|
||||||
/* Configuration */
|
/* Configuration */
|
||||||
case PM_ERR_OPT_LOGFILE:
|
case PM_ERR_OPT_LOGFILE:
|
||||||
case PM_ERR_OPT_DBPATH:
|
case PM_ERR_OPT_DBPATH:
|
||||||
|
|
Loading…
Add table
Reference in a new issue