diff options
author | Christoph Mallon <christoph.mallon@gmx.de> | 2018-06-01 07:08:52 +0200 |
---|---|---|
committer | Christoph Mallon <christoph.mallon@gmx.de> | 2018-06-01 07:08:52 +0200 |
commit | 62acdfe4b7897b2107246376667e09fc30f84a76 (patch) | |
tree | 3fc36b9130457cb7ce010d3238153e57a91970a2 | |
parent | b4e8c130bd3c642220792b64fce2e506c0926de5 (diff) |
Fix typo in error message.
-rw-r--r-- | src/parser/parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/parser.c b/src/parser/parser.c index 2a11fee..26cbe83 100644 --- a/src/parser/parser.c +++ b/src/parser/parser.c @@ -9184,7 +9184,7 @@ static void parse_asm_labels(asm_label_t **anchor) if (peek(T_IDENTIFIER)) { add_anchor_token(','); do { - label_t *const label = get_label("'asm goto' labels"); + label_t *const label = get_label("'asm goto' label"); if (label) { use_label(label); |