FS-7294: Enable -Werror when building with clang compiler

This commit is contained in:
Michael Jerris 2015-02-17 16:23:53 -05:00
parent 302a339fdf
commit 85a5e1db1d

View File

@ -1205,7 +1205,7 @@ struct color_map_el color_map[] = {
static const char* match_color(const char *s) {
struct color_map_el *map = color_map;
while (map->name) {
while (*map->name) {
if (!(strcasecmp(s, map->name))) {
return map->seq;
}