From d13534967ad3d3120ae8ea01005549f24be018f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9B=D0=B5=D0=BE=D0=BD=D0=B8=D0=B4=20=D0=AE=D1=80=D1=8C?= =?UTF-8?q?=D0=B5=D0=B2=20=28Leonid=20Yuriev=29?= Date: Thu, 24 Mar 2022 10:18:54 +0300 Subject: [PATCH] mdbx++: fix copy&paste typo inside `mdbx::cursor::find_multivalue()`. --- mdbx.h++ | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mdbx.h++ b/mdbx.h++ index 2cda137f..9749debe 100644 --- a/mdbx.h++ +++ b/mdbx.h++ @@ -5667,7 +5667,7 @@ inline cursor::move_result cursor::move(move_operation operation, inline cursor::move_result cursor::find_multivalue(const slice &key, const slice &value, bool throw_notfound) { - return move(key_exact, key, value, throw_notfound); + return move(multi_find_pair, key, value, throw_notfound); } inline cursor::move_result cursor::lower_bound_multivalue(const slice &key,