diff options
| author | Mel <mel@rnrd.eu> | 2026-01-27 04:15:32 +0100 |
|---|---|---|
| committer | Mel <mel@rnrd.eu> | 2026-01-27 04:15:32 +0100 |
| commit | 129e5669015a7ffd78d0f665f46cc434bcf126d2 (patch) | |
| tree | 97c203070590cf27bba2209c1998bcc546260753 /boot/catboot.c | |
| parent | 38bc2d06fff322a99ba6ba46df69bbd2b40c6173 (diff) | |
| download | catskill-main.tar.zst catskill-main.zip | |
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'boot/catboot.c')
| -rw-r--r-- | boot/catboot.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/boot/catboot.c b/boot/catboot.c index db100dd..e78a401 100644 --- a/boot/catboot.c +++ b/boot/catboot.c @@ -22,7 +22,7 @@ #include "catboot.h" -#define VERSION "0.0.0" +#define CATBOOT_VERSION "0.0.0" struct String read_file(const ascii* path) @@ -66,7 +66,7 @@ version(void) { fprintf( stderr, - "catboot (catskill), version " VERSION "\n" + "catboot (catskill), version " CATBOOT_VERSION "\n" "\n" "This program's source code is subject to the terms of the Mozilla Public\n" "License, v. 2.0. If a copy of the MPL was not distributed with this\n" @@ -265,7 +265,7 @@ default_command(struct Command_Arguments* arguments) if (!build_result.success) { log_error("backend failure with exit code %ld\n", build_result.compiler_exit_code); log_error( - "compiler output:\n%.*s\n", (int)build_result.compiler_log.length, + "compiler output:\n%.*s", (int)build_result.compiler_log.length, build_result.compiler_log.data); return COMMAND_FAIL; |
