Commit 42140abd authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

fix 32 bit linux build of brtloader test #2475 closes[t:2475]

git-svn-id: file:///svn/toku/tokudb@18769 c7de825b-a66e-492c-adef-691d508d4ae1
parent bbdd1c65
......@@ -173,11 +173,11 @@ static void test_read_write_rows (char *template) {
r = brtloader_open_temp_file(&bl, &idx);
CKERR(r);
size_t dataoff=0;
u_int64_t dataoff=0;
char *keystrings[] = {"abc", "b", "cefgh"};
char *valstrings[] = {"defg", "", "xyz"};
size_t actual_size=0;
u_int64_t actual_size=0;
for (int i=0; i<3; i++) {
DBT key = {.size=strlen(keystrings[i]), .data=keystrings[i]};
DBT val = {.size=strlen(valstrings[i]), .data=valstrings[i]};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment