aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2026-02-02 17:57:50 +0100
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2026-02-02 17:57:50 +0100
commit6a07f70c1c1081374faeee2eabe53d23805ea529 (patch)
tree9aba4261869abee3a4a0ee4dd477c0393baa6567 /src
parent3666c1d3aadc2dca24d6af375f6f367812e30bf2 (diff)
support -> supported
Diffstat (limited to 'src')
-rw-r--r--src/build_settings.cpp2
-rw-r--r--src/linker.cpp2
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;
}