mdbx: fix typo in MDBX_EINVAL which breaks MingGW builds with CLANG.

This commit is contained in:
Леонид Юрьев (Leonid Yuriev) 2022-08-16 11:08:04 +03:00
parent 3fbbe32adf
commit 316ddf9e01

View File

@ -15253,7 +15253,7 @@ int mdbx_cursor_get_batch(MDBX_cursor *mc, size_t *count, MDBX_val *pairs,
break; break;
default: default:
mdbx_debug("unhandled/unimplemented cursor operation %u", op); mdbx_debug("unhandled/unimplemented cursor operation %u", op);
rc = EINVAL; rc = MDBX_EINVAL;
break; break;
} }