1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Fix FTBFS on 32-bit with gcc 14
Bug-Debian: https://bugs.debian.org/1085133
Author: Adrian Bunk <bunk@debian.org>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2024-10-15
Forwarded: https://github.com/salortiz/LMDB_File/pull/42
Bug: https://github.com/salortiz/LMDB_File/pull/42
--- a/LMDB.xs
+++ b/LMDB.xs
@@ -897,7 +897,7 @@
int
mdb_cursor_count(cursor, count)
LMDB::Cursor cursor
- UV &count = NO_INIT
+ size_t &count = NO_INIT
OUTPUT:
count
|