diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-02-02 17:57:50 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-02-02 17:57:50 +0100 |
| commit | 6a07f70c1c1081374faeee2eabe53d23805ea529 (patch) | |
| tree | 9aba4261869abee3a4a0ee4dd477c0393baa6567 | |
| parent | 3666c1d3aadc2dca24d6af375f6f367812e30bf2 (diff) | |
support -> supported
| -rw-r--r-- | src/build_settings.cpp | 2 | ||||
| -rw-r--r-- | src/linker.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp index e0017baea..ded51c420 100644 --- a/src/build_settings.cpp +++ b/src/build_settings.cpp @@ -1861,7 +1861,7 @@ gb_internal void init_build_context(TargetMetrics *cross_target, Subtarget subta if (bc->disable_red_zone) { if (is_arch_wasm() && bc->metrics.os == TargetOs_freestanding) { - gb_printf_err("-disable-red-zone is not support for this target"); + gb_printf_err("-disable-red-zone is not supported on this target"); gb_exit(1); } } diff --git a/src/linker.cpp b/src/linker.cpp index f369a5a38..9f4f1b2e8 100644 --- a/src/linker.cpp +++ b/src/linker.cpp @@ -181,7 +181,7 @@ try_cross_linking:; case Linker_radlink: section_name = str_lit("rad-link"); break; #endif default: - gb_printf_err("'%.*s' linker is not support for this platform\n", LIT(linker_choices[build_context.linker_choice])); + gb_printf_err("'%.*s' linker is not supported on this platform\n", LIT(linker_choices[build_context.linker_choice])); return 1; } |