mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-25 10:07:36 +03:00
Fix coding sytle nits.
This commit is contained in:
parent
6f001059aa
commit
a344dd01c7
3 changed files with 7 additions and 7 deletions
|
|
@ -61,13 +61,13 @@ p_test_fini(void)
|
|||
}
|
||||
|
||||
test_status_t
|
||||
p_test(test_t* t, ...)
|
||||
p_test(test_t *t, ...)
|
||||
{
|
||||
test_status_t ret = test_status_pass;
|
||||
va_list ap;
|
||||
|
||||
va_start(ap, t);
|
||||
for (; t != NULL; t = va_arg(ap, test_t*)) {
|
||||
for (; t != NULL; t = va_arg(ap, test_t *)) {
|
||||
t();
|
||||
if (test_status > ret)
|
||||
ret = test_status;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue