diff options
Diffstat (limited to 'gas/config/tc-crx.c')
-rw-r--r-- | gas/config/tc-crx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-crx.c b/gas/config/tc-crx.c index 7993e72..4b829c2 100644 --- a/gas/config/tc-crx.c +++ b/gas/config/tc-crx.c @@ -1765,7 +1765,7 @@ preprocess_reglist (char *param, int *allocated) while (*paramP++ != '{'); - new_param = (char *)xcalloc (MAX_INST_LEN, sizeof (char)); + new_param = XCNEWVEC (char, MAX_INST_LEN); *allocated = 1; strncpy (new_param, param, paramP - param - 1); |