1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-12 03:51:30 +02:00

(parse_ls_color): Use STREQ here instead of strcmp(...) == 0.

This commit is contained in:
Jim Meyering
1996-06-19 04:22:28 +00:00
parent cfda609a21
commit e3c3d0b385
+1 -1
View File
@@ -1376,7 +1376,7 @@ parse_ls_color (void)
{
for (ind_no = 0; indicator_name[ind_no] != NULL; ++ind_no)
{
if (strcmp (label, indicator_name[ind_no]) == 0)
if (STREQ (label, indicator_name[ind_no]))
{
color_indicator[ind_no].string = buf;
state = ((color_indicator[ind_no].len =