From 4007253649425ff37a503ea77cff2155ab9814ef Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Wed, 3 Feb 2021 22:08:14 -0500 Subject: fixed command line argument with / in it windows --- colors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'colors.h') diff --git a/colors.h b/colors.h index e2ac2af..28f9951 100644 --- a/colors.h +++ b/colors.h @@ -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)) -- cgit v1.2.3