ITS#10171 - Explicitly cast private values

Fixes issues with -Werror=incompatible-pointer-types

Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
This commit is contained in:
Stephen Gallagher 2024-02-06 21:38:24 -05:00
parent af877238e9
commit fb9e6a81bb
4 changed files with 4 additions and 4 deletions

View File

@ -151,7 +151,7 @@ int config_check_vals(ConfigTable *Conf, ConfigArgs *c, int check_only ) {
int rc, arg_user, arg_type, arg_syn, iarg;
unsigned uiarg;
long larg;
size_t ularg;
unsigned long ularg;
ber_len_t barg;
if(Conf->arg_type == ARG_IGNORED) {

View File

@ -557,7 +557,7 @@ done:;
a2->restrict_filter = ap.restrict_filter;
a2->restrict_val = ap.restrict_val;
for ( app = &on->on_bi.bi_private; *app; app = &(*app)->ap_next )
for ( app = (constraint **)&on->on_bi.bi_private; *app; app = &(*app)->ap_next )
/* Get to the end */ ;
a2->ap_next = *app;

View File

@ -111,7 +111,7 @@ static int dgroup_cf( ConfigArgs *c )
*/
a2 = ch_malloc( sizeof(adpair) );
for ( app = &on->on_bi.bi_private; *app; app = &(*app)->ap_next )
for ( app = (adpair **)&on->on_bi.bi_private; *app; app = &(*app)->ap_next )
/* Get to the end */ ;
a2->ap_mem = ap.ap_mem;

View File

@ -201,7 +201,7 @@ valsort_cf_func(ConfigArgs *c) {
return(1);
}
for ( vip = &on->on_bi.bi_private; *vip; vip = &(*vip)->vi_next )
for ( vip = (valsort_info **)&on->on_bi.bi_private; *vip; vip = &(*vip)->vi_next )
/* Get to the end */ ;
vi = ch_malloc( sizeof(valsort_info) );