diff options
Diffstat (limited to 'gcc/intl.c')
-rw-r--r-- | gcc/intl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/intl.c b/gcc/intl.c index 262745f8049..aa443509a6f 100644 --- a/gcc/intl.c +++ b/gcc/intl.c @@ -140,7 +140,7 @@ char * get_spaces (const char *str) { size_t len = gcc_gettext_width (str); - char *spaces = XNEWVEC(char, len + 1); + char *spaces = XNEWVEC (char, len + 1); memset (spaces, ' ', len); spaces[len] = '\0'; return spaces; |