summaryrefslogtreecommitdiffstats
path: root/contrib/gcc/scan.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/gcc/scan.c')
-rw-r--r--contrib/gcc/scan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/gcc/scan.c b/contrib/gcc/scan.c
index ee2607c..ac6b809 100644
--- a/contrib/gcc/scan.c
+++ b/contrib/gcc/scan.c
@@ -34,7 +34,7 @@ make_sstring_space (str, count)
if (new_size <= cur_size)
return;
-
+
str->base = xrealloc (str->base, new_size);
str->ptr = str->base + cur_size;
str->limit = str->base + new_size;
@@ -53,7 +53,7 @@ sstring_append (dst, src)
s = src->base;
while (--count >= 0) *d++ = *s++;
dst->ptr = d;
- *d = 0;
+ *d = 0;
}
int
OpenPOWER on IntegriCloud