aboutsummaryrefslogtreecommitdiff
path: root/decl.c
diff options
context:
space:
mode:
Diffstat (limited to 'decl.c')
-rw-r--r--decl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/decl.c b/decl.c
index 1699e3e..5dee645 100644
--- a/decl.c
+++ b/decl.c
@@ -885,7 +885,7 @@ struct declaration *stringdecl(struct expression *expr)
if (!d) {
d = mkdecl(DECLOBJECT, expr->type, LINKNONE);
d->value = mkglobal("string", true);
- emitdata(d, mkinit(0, expr));
+ emitdata(d, mkinit(0, expr->type->size, expr));
*entry = d;
}
return d;