@@ -205,8 +205,7 @@ CTL_WRITE_HANDLER(capacity)(void *ctx, umf_ctl_query_source_t source, void *arg,
205205        return  UMF_RESULT_ERROR_INVALID_ARGUMENT ;
206206    }
207207    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 );
210209    if  (ret  ==  UMF_RESULT_SUCCESS ) {
211210        pool -> params_overridden  |= DP_OVERRIDE_CAPACITY ;
212211    }
@@ -279,8 +278,7 @@ CTL_WRITE_HANDLER(pool_trace)(void *ctx, umf_ctl_query_source_t source,
279278        return  UMF_RESULT_ERROR_INVALID_ARGUMENT ;
280279    }
281280    int  value  =  * (int  * )arg ;
282-     umf_result_t  ret  = 
283-         umfDisjointPoolParamsSetTrace (& pool -> params , value );
281+     umf_result_t  ret  =  umfDisjointPoolParamsSetTrace (& pool -> params , value );
284282    if  (ret  ==  UMF_RESULT_SUCCESS ) {
285283        pool -> params_overridden  |= DP_OVERRIDE_POOL_TRACE ;
286284    }
@@ -557,8 +555,8 @@ umf_result_t disjoint_pool_ctl(void *hPool,
557555                               umf_ctl_query_type_t  queryType , va_list  args ) {
558556    utils_init_once (& ctl_initialized , initialize_disjoint_ctl );
559557
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 );
562560}
563561
564562// Temporary solution for disabling memory poisoning. This is needed because 
0 commit comments