mdbx: cleanup mdbx_env_create().

This commit is contained in:
Leo Yuriev
2017-05-18 04:58:02 +03:00
parent 6ee3aebc32
commit 818e742c58
2 changed files with 14 additions and 16 deletions

2
mdbx.h
View File

@@ -386,7 +386,7 @@ LIBMDBX_API const char *mdbx_strerror_r(int errnum, char *buf, size_t buflen);
* [out] env The address where the new handle will be stored
*
* Returns A non-zero error value on failure and 0 on success. */
LIBMDBX_API int mdbx_env_create(MDB_env **env);
LIBMDBX_API int mdbx_env_create(MDB_env **penv);
/* Open an environment handle.
*