aboutsummaryrefslogtreecommitdiff
path: root/parse.c
diff options
context:
space:
mode:
authorAndrew Chambers <[email protected]>2021-10-23 23:57:24 +1300
committerAndrew Chambers <[email protected]>2021-10-23 23:57:24 +1300
commit6b9b596fcd588d22e15f259b572ae8845fbddacb (patch)
tree1cf1758d7a65e90e8a9d40a91887bd5501506d27 /parse.c
parent1e9bf39a1b2c47920def55f29c4b9b93c402e1d4 (diff)
Implement the .set directive.
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.c b/parse.c
index eaa9c67..3d63fbe 100644
--- a/parse.c
+++ b/parse.c
@@ -88,7 +88,7 @@ decodestring(char *s)
}
data[len++] = c;
}
- return (String){ .kind = ASM_STRING, .len = len, .data = data };
+ return (String) { .kind = ASM_STRING, .len = len, .data = data };
}
static int