mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Remove warnings by casting
This commit is contained in:
parent
84a0873d05
commit
7c82a06dcf
3 changed files with 4 additions and 3 deletions
|
@ -334,7 +334,8 @@ history_truncate_file (fname, lines)
|
|||
file_size = (size_t)finfo.st_size;
|
||||
|
||||
/* check for overflow on very large files */
|
||||
if (file_size != finfo.st_size || file_size + 1 < file_size)
|
||||
if ((long long) file_size != (long long) finfo.st_size ||
|
||||
file_size + 1 < file_size)
|
||||
{
|
||||
close (file);
|
||||
#if defined (EFBIG)
|
||||
|
|
|
@ -1087,7 +1087,7 @@ my_bool is_const_init(UDF_INIT *initid, UDF_ARGS *args, char *message)
|
|||
strmov(message, "IS_CONST accepts only one argument");
|
||||
return 1;
|
||||
}
|
||||
initid->ptr= (char*)((args->args[0] != NULL) ? 1 : 0);
|
||||
initid->ptr= (char*)((args->args[0] != NULL) ? 1UL : 0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -971,7 +971,7 @@ int decimal2double(decimal_t *from, double *to)
|
|||
|
||||
*to= from->sign ? -result : result;
|
||||
|
||||
DBUG_PRINT("info", ("result: %f (%lx)", *to, *to));
|
||||
DBUG_PRINT("info", ("result: %f (%lx)", *to, *(ulong *)to));
|
||||
|
||||
return E_DEC_OK;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue