diff options
| author | gingerBill <bill@gingerbill.org> | 2020-01-18 14:53:53 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-01-18 14:53:53 +0000 |
| commit | c3205316ed6f9803dae4518af93879032b07f96b (patch) | |
| tree | 3bc42c7b12f99098543643efb9d7e0e63f289f80 | |
| parent | b542ef273dd4044692fecc02934f117c278d1891 (diff) | |
Remove debug printing
| -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 bee298738..87669f8e3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -50,7 +50,7 @@ i32 system_exec_command_line_app(char const *name, char const *fmt, ...) { cmd_len = gb_snprintf_va(cmd_line, gb_size_of(cmd_line), fmt, va); va_end(va); - gb_printf_err("%.*s\n", cast(int)cmd_len, cmd_line); + // gb_printf_err("%.*s\n", cast(int)cmd_len, cmd_line); tmp = gb_temp_arena_memory_begin(&string_buffer_arena); defer (gb_temp_arena_memory_end(tmp)); |