|
|
@@ -767,7 +767,7 @@ new_dcc(struct dcc_table *type, int xtra_size)
|
|
|
|
|
|
dcc[i].type = type;
|
|
|
if (xtra_size)
|
|
|
- dcc[i].u.other = (char *) calloc(1, xtra_size);
|
|
|
+ dcc[i].u.other = calloc(1, xtra_size);
|
|
|
else
|
|
|
dcc[i].u.other = NULL;
|
|
|
dcc[i].simul = -1;
|
|
|
@@ -791,7 +791,7 @@ changeover_dcc(int i, struct dcc_table *type, int xtra_size)
|
|
|
}
|
|
|
dcc[i].type = type;
|
|
|
if (xtra_size)
|
|
|
- dcc[i].u.other = (char *) calloc(1, xtra_size);
|
|
|
+ dcc[i].u.other = calloc(1, xtra_size);
|
|
|
}
|
|
|
|
|
|
int
|