Skip to content

Commit

Permalink
textopsx: fixed clang compile warning on comparing bool with char
Browse files Browse the repository at this point in the history
(cherry picked from commit bc5ac8c)
  • Loading branch information
miconda committed May 12, 2015
1 parent b5cd3fd commit ed2c270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/textopsx/textopsx.c
Expand Up @@ -863,7 +863,7 @@ static int find_hf_value2_param(struct hname_data* hname, str* param_area, str*
while (i<param_area->len && is_space(param_area->s[i])) i++;
}
else {
while (i<param_area->len && !is_space(param_area->s[i]) && !param_area->s[i]!=',') i++;
while (i<param_area->len && !is_space(param_area->s[i]) && !(param_area->s[i]!=',')) i++;
}
}
lump_del->s = param_area->s + i;
Expand Down

0 comments on commit ed2c270

Please sign in to comment.