diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-03 22:08:14 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-03 22:08:14 -0500 |
commit | 4007253649425ff37a503ea77cff2155ab9814ef (patch) | |
tree | 72cd40904068ee552def13ad3e99e59ed35e2748 /colors.h | |
parent | a566e529522940f011aa1fa08d44753b6bea9562 (diff) |
fixed command line argument with / in it windows
Diffstat (limited to 'colors.h')
-rw-r--r-- | colors.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ static ColorName const color_names[COLOR_COUNT] = { }; static ColorSetting color_setting_from_str(char const *str) { - // @OPTIM: sort color_names, binary search + // @OPTIMIZE: sort color_names, binary search for (int i = 0; i < COLOR_COUNT; ++i) { ColorName const *n = &color_names[i]; if (streq(n->name, str)) |