diff options
author | Johnny Richard <johnny@johnnyrichard.com> | 2023-04-14 23:40:37 +0200 |
---|---|---|
committer | Johnny Richard <johnny@johnnyrichard.com> | 2023-04-15 02:17:27 +0200 |
commit | 7720f00ffdb6fb23cec263d6aef67f54fd698d95 (patch) | |
tree | 16ebeeeae80ea4c64ffb884b0528b58aef59cc81 | |
parent | f2bc5274bb55bc2b180efae274ada107ea4716d1 (diff) |
cli: Remove irrelevant information when loading source
Signed-off-by: Johnny Richard <johnny@johnnyrichard.com>
-rw-r--r-- | src/pipac.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/pipac.c b/src/pipac.c index 0df4a08..29c21bd 100644 --- a/src/pipac.c +++ b/src/pipac.c @@ -46,8 +46,6 @@ main(int argc, char **argv) lexer_t lexer; lexer_init(&lexer, filepath); - printf("[INFO]: %ld bytes loaded [filename='%s']\n", lexer.srclen, lexer.filepath); - parser_t parser; parser_init(&parser, &lexer); ast_function_t func = parser_parse_function(&parser); |