aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHimbeer <himbeer@disroot.org>2024-09-17 10:26:59 +0200
committerHimbeer <himbeer@disroot.org>2024-09-17 18:01:09 +0200
commitfd90d274ffc332eef43ce80b24acc89c1419b6cb (patch)
tree63cdc40520e3acee3ecd6cd5297048d0ae9ecf68
parentf03688fa74b9bb3f13a106e61a3d7f2e9e85c8f8 (diff)
Fix unlex function return type and name being on the same line
-rw-r--r--src/lex.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lex.c b/src/lex.c
index 0fdf6af..80c1c5b 100644
--- a/src/lex.c
+++ b/src/lex.c
@@ -386,7 +386,8 @@ lex(struct lexer *lexer, struct token *out)
}
}
-void unlex(struct lexer *lexer, const struct token *in)
+void
+unlex(struct lexer *lexer, const struct token *in)
{
assert(lexer->un.token == T_NONE);
lexer->un = *in;