mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-03 14:18:47 +00:00
Fix missing commas in -target-featues string by adding missing i increment.
This commit is contained in:
@@ -1369,6 +1369,7 @@ gb_internal char const *target_features_set_to_cstring(gbAllocator allocator, bo
|
|||||||
gb_memmove(features + len, feature.text, feature.len);
|
gb_memmove(features + len, feature.text, feature.len);
|
||||||
len += feature.len;
|
len += feature.len;
|
||||||
if (with_quotes) features[len++] = '"';
|
if (with_quotes) features[len++] = '"';
|
||||||
|
i += 1;
|
||||||
}
|
}
|
||||||
features[len++] = 0;
|
features[len++] = 0;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user