aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2022-05-04 13:29:52 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2022-05-04 13:29:52 +0200
commitdc323cfa1d935e6b5e9d8bf04fb8597fc8b66bce (patch)
tree0d8d7e34ab981b3e665bdd48edb5a51be5e75eee /src/main.cpp
parent0afa226a9370add6f7ec67dadc7675cd594f95df (diff)
Small fix to deprecation warning.
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 2633f8e55..a907324b8 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -835,7 +835,7 @@ bool parse_build_flags(Array<String> args) {
}
name = substring(name, 0, end);
if (have_equals && name != "opt") {
- gb_printf_err("`flag=value` has been deprecated and will be removed next release. Use `%.*s:` instead.\n", LIT(name), LIT(name));
+ gb_printf_err("`flag=value` has been deprecated and will be removed next release. Use `%.*s:` instead.\n", LIT(name));
}
String param = {};