diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-05-04 13:29:52 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-05-04 13:29:52 +0200 |
| commit | dc323cfa1d935e6b5e9d8bf04fb8597fc8b66bce (patch) | |
| tree | 0d8d7e34ab981b3e665bdd48edb5a51be5e75eee /src/main.cpp | |
| parent | 0afa226a9370add6f7ec67dadc7675cd594f95df (diff) | |
Small fix to deprecation warning.
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 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 = {}; |