aboutsummaryrefslogtreecommitdiff
path: root/parse.c
diff options
context:
space:
mode:
authorandrewchambers <[email protected]>2021-10-24 00:53:49 +1300
committerGitHub <[email protected]>2021-10-24 00:53:49 +1300
commit0d53c9d7b78aec53922bd0d57dbe48db27570506 (patch)
tree8be3101481fdfd82dc18a1ae1484ea5f6f29f1d0 /parse.c
parentb0742648c80cbc11465b773116a74dead9e1242e (diff)
parent6b9b596fcd588d22e15f259b572ae8845fbddacb (diff)
Merge pull request #9 from andrewchambers/set
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 cba90dd..9e955f7 100644
--- a/parse.c
+++ b/parse.c
@@ -90,7 +90,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