summaryrefslogtreecommitdiff
path: root/05/parse.b
diff options
context:
space:
mode:
Diffstat (limited to '05/parse.b')
-rw-r--r--05/parse.b3
1 files changed, 2 insertions, 1 deletions
diff --git a/05/parse.b b/05/parse.b
index b6f230f..2df9db1 100644
--- a/05/parse.b
+++ b/05/parse.b
@@ -459,7 +459,8 @@ function parse_type_to
if c == 0 goto bad_type
n = type_length(c)
c += types
- out = memcpy(out, c, n)
+ memcpy(out, c, n)
+ out += n
goto base_type_done
:skip_struct_union_enum