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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user