complier warnings. hide the redundant condition under #ifdef

(because only there it  makes any sense)
This commit is contained in:
Sergei Golubchik 2013-04-12 01:05:29 +02:00
parent ce926c90ac
commit 4494c804b8

View file

@ -3537,9 +3537,9 @@ bool check_column_name(const char *name)
}
#else
last_char_is_space= *name==' ';
#endif
if (*name == NAMES_SEP_CHAR)
if (*name == '\377')
return 1;
#endif
name++;
name_length++;
}