1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

This is a cleanup of warnings that windows is complaining about.

This commit is contained in:
brian@zim.(none)
2006-08-23 15:12:42 -07:00
parent 212ab97668
commit d41188130a
7 changed files with 6 additions and 10 deletions

View File

@@ -152,7 +152,7 @@ static bool parse_long(const LEX_STRING *token, long *value)
int err_code;
char *end_ptr= token->str + token->length;
*value= my_strtoll10(token->str, &end_ptr, &err_code);
*value= (long)my_strtoll10(token->str, &end_ptr, &err_code);
return err_code != 0;
}