@@ -205,8 +205,7 @@ CTL_WRITE_HANDLER(capacity)(void *ctx, umf_ctl_query_source_t source, void *arg,
205
205
return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
206
206
}
207
207
size_t value = * (size_t * )arg ;
208
- umf_result_t ret =
209
- umfDisjointPoolParamsSetCapacity (& pool -> params , value );
208
+ umf_result_t ret = umfDisjointPoolParamsSetCapacity (& pool -> params , value );
210
209
if (ret == UMF_RESULT_SUCCESS ) {
211
210
pool -> params_overridden |= DP_OVERRIDE_CAPACITY ;
212
211
}
@@ -279,8 +278,7 @@ CTL_WRITE_HANDLER(pool_trace)(void *ctx, umf_ctl_query_source_t source,
279
278
return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
280
279
}
281
280
int value = * (int * )arg ;
282
- umf_result_t ret =
283
- umfDisjointPoolParamsSetTrace (& pool -> params , value );
281
+ umf_result_t ret = umfDisjointPoolParamsSetTrace (& pool -> params , value );
284
282
if (ret == UMF_RESULT_SUCCESS ) {
285
283
pool -> params_overridden |= DP_OVERRIDE_POOL_TRACE ;
286
284
}
@@ -557,8 +555,8 @@ umf_result_t disjoint_pool_ctl(void *hPool,
557
555
umf_ctl_query_type_t queryType , va_list args ) {
558
556
utils_init_once (& ctl_initialized , initialize_disjoint_ctl );
559
557
560
- return ctl_query (& disjoint_ctl_root , hPool , operationType , name ,
561
- queryType , arg , size , args );
558
+ return ctl_query (& disjoint_ctl_root , hPool , operationType , name , queryType ,
559
+ arg , size , args );
562
560
}
563
561
564
562
// Temporary solution for disabling memory poisoning. This is needed because
0 commit comments