From 595482ca579a98df50ff136cf29b655ccb8f4f95 Mon Sep 17 00:00:00 2001 From: Leonid Yuriev Date: Mon, 13 Apr 2020 23:35:08 +0300 Subject: [PATCH] mdbx: fix typo (extra closing parenthesis). Change-Id: Icae740a640ab59dedc7608a725cc24623dba62bd --- src/elements/osal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/elements/osal.c b/src/elements/osal.c index 1d498f57..1a4447a0 100644 --- a/src/elements/osal.c +++ b/src/elements/osal.c @@ -1173,7 +1173,7 @@ static int mdbx_check_fs_local(mdbx_filehandle_t handle, int flags) { (ent = getmntent_r(mounted, &entbuf, pathbuf, sizeof(pathbuf)))) #else const bool should_copy = true; - while (nullptr != (ent = getmntent(mounted)))) + while (nullptr != (ent = getmntent(mounted))) #endif { struct stat mnt;