aboutsummaryrefslogtreecommitdiff
path: root/gcc/intl.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/intl.c')
-rw-r--r--gcc/intl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/intl.c b/gcc/intl.c
index 262745f..aa44350 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;