mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-23 13:13:06 +00:00
Reformat the codebase with the clang-format 18.
This commit is contained in:
@@ -6,9 +6,10 @@ deallocated(void) {
|
||||
return 0;
|
||||
}
|
||||
uint64_t deallocated;
|
||||
size_t sz = sizeof(deallocated);
|
||||
expect_d_eq(mallctl("thread.deallocated", (void *)&deallocated, &sz,
|
||||
NULL, 0), 0, "Unexpected mallctl failure");
|
||||
size_t sz = sizeof(deallocated);
|
||||
expect_d_eq(
|
||||
mallctl("thread.deallocated", (void *)&deallocated, &sz, NULL, 0),
|
||||
0, "Unexpected mallctl failure");
|
||||
return deallocated;
|
||||
}
|
||||
|
||||
@@ -28,6 +29,5 @@ TEST_END
|
||||
|
||||
int
|
||||
main(void) {
|
||||
return test(
|
||||
test_realloc_free);
|
||||
return test(test_realloc_free);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user