aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index d98b98d..915078f 100644
--- a/src/main.c
+++ b/src/main.c
@@ -45,7 +45,7 @@ int main(int argc, char* argv[]) {
token_t* token = NULL;
while ((token = lexer_get_next_token(lexer)) != NULL) {
- log_inf("token type: [%s]\ttoken value: [%s]", token_get_type(token->type), token->value);
+ log_inf("token type: [%s]\t\ttoken value: [%s]", token_get_type(token->type), token->value);
free(token);
}