1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Code review comments

This commit is contained in:
malff/marcsql@weblab.(none)
2007-05-25 16:17:20 -06:00
parent 88e3abf5ef
commit 0bb9b8f90a

View File

@ -1112,8 +1112,8 @@ Alter_info::Alter_info(const Alter_info &rhs, MEM_ROOT *mem_root)
char *skip_rear_comments(CHARSET_INFO *cs, char *begin, char *end)
{
while (begin < end && (end[-1] == '*' ||
end[-1] == '/' || end[-1] == ';') ||
my_isspace(cs, end[-1]))
end[-1] == '/' || end[-1] == ';' ||
my_isspace(cs, end[-1])))
end-= 1;
return end;
}