diff options
Diffstat (limited to 'src/runner/runner.c')
-rw-r--r-- | src/runner/runner.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runner/runner.c b/src/runner/runner.c index 5235cac..a4945aa 100644 --- a/src/runner/runner.c +++ b/src/runner/runner.c @@ -167,7 +167,7 @@ AstTree *runAstTreeFunction(AstTree *tree, AstTree **arguments, case AST_TREE_TOKEN_KEYWORD_PRINT_U64: { AstTreeSingleChild *metadata = expr->metadata; AstTree *tree = calcAstTreeValue(metadata, &pages); - printf("%ld", (AstTreeU64)tree->metadata); + printf("%lu", (AstTreeU64)tree->metadata); astTreeDelete(tree); } continue; |