Skip to content

Commit bfe511a

Browse files
committed
Fix Windows werror.
1 parent 885d481 commit bfe511a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/src/unit-cppapi-metadata.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ TEST_CASE_METHOD(
195195
std::latch get_metadata(2);
196196
std::thread t1([&]() {
197197
Array array(ctx, std::string(array_name_), TILEDB_WRITE);
198-
array.put_metadata("a", TILEDB_UINT64, b.size(), b.data());
198+
array.put_metadata("a", TILEDB_UINT64, (uint32_t)b.size(), b.data());
199199
get_metadata.count_down();
200200
array.close();
201201
});

0 commit comments

Comments
 (0)