diff options
| author | gingerBill <bill@gingerbill.org> | 2024-07-09 14:33:01 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-07-09 14:33:01 +0100 |
| commit | 14dc3598b4ef4b32e4fd1bcbf3f6f3ce3e40a9cf (patch) | |
| tree | 4eb4e4bc6bc65a1833dfdfc31f2af0c26599290c /src/main.cpp | |
| parent | 330d0e7a2a41201eeb0bd844057f46ef42a7e404 (diff) | |
Add `gb_internal` to procedures
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index f2312f248..7763ccd23 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3058,7 +3058,7 @@ int main(int arg_count, char const **arg_ptr) { gb_printf("%.*s", LIT(odin_root_dir())); return 0; } else if (command == "clear-cache") { - return try_clear_cache(); + return try_clear_cache() ? 0 : 1; } else { String argv1 = {}; if (args.count > 1) { |