summaryrefslogtreecommitdiff
path: root/src/include/btree.i
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/btree.i')
-rw-r--r--src/include/btree.i6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/btree.i b/src/include/btree.i
index daf2eb158c1..e48189d50ea 100644
--- a/src/include/btree.i
+++ b/src/include/btree.i
@@ -1425,9 +1425,11 @@ __wt_page_swap_func(
* page not having been released, and that's not the case.
*/
if (LF_ISSET(WT_READ_NOTFOUND_OK) && ret == WT_NOTFOUND)
- return (EINVAL);
+ WT_RET_MSG(session,
+ EINVAL, "page-release WT_NOTFOUND error mapped to EINVAL");
if (LF_ISSET(WT_READ_RESTART_OK) && ret == WT_RESTART)
- return (EINVAL);
+ WT_RET_MSG(session,
+ EINVAL, "page-release WT_RESTART error mapped to EINVAL");
return (ret);
}