mdbx-test: fix int-types for 32-bit builds (minor).

Change-Id: Ib1ffe0633cf461e7881fe43953528688fe7abce0
This commit is contained in:
Leonid Yuriev
2018-08-22 07:22:01 +03:00
committed by Leo Yuriev
parent c362ad9465
commit 2791224542
3 changed files with 24 additions and 21 deletions

View File

@@ -216,12 +216,12 @@ struct actor_params_pod {
unsigned mode_flags;
unsigned table_flags;
int64_t size_lower;
int64_t size_now;
int64_t size_upper;
int32_t shrink_threshold;
int32_t growth_step;
int32_t pagesize;
intptr_t size_lower;
intptr_t size_now;
intptr_t size_upper;
int shrink_threshold;
int growth_step;
int pagesize;
unsigned test_duration;
unsigned test_nops;