Skip to content

Commit

Permalink
enhance error conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
kroggen committed Mar 6, 2020
1 parent a5a8e89 commit 9b8587a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlite3.c
Expand Up @@ -63330,7 +63330,7 @@ SQLITE_PRIVATE int lmdb_error(int rc){
case EACCES:
return SQLITE_READONLY;
case ENOENT:
return SQLITE_CANTOPEN;
return SQLITE_NOTFOUND;
case EIO:
return SQLITE_IOERR;
case ENOSPC:
Expand Down

0 comments on commit 9b8587a

Please sign in to comment.