mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-11 05:10:20 +01:00
Merge branch 'fix-warning' into 'master'
Fix implicit conversion warning See merge request cairo/cairo!542
This commit is contained in:
commit
b3d578ec2f
1 changed files with 1 additions and 1 deletions
|
|
@ -1559,7 +1559,7 @@ _translate_real (csi_t *ctx,
|
|||
{
|
||||
uint8_t hdr;
|
||||
|
||||
if (real >= INT32_MIN && real <= INT32_MAX && (int) real == real)
|
||||
if ((double)real >= INT32_MIN && (double)real <= INT32_MAX && (int) real == real)
|
||||
return _translate_integer (ctx, real, closure);
|
||||
|
||||
#if WORDS_BIGENDIAN
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue