mirror of
https://github.com/libretro/RetroArch
synced 2025-01-17 10:18:17 +00:00
Use UINT32_C
This commit is contained in:
parent
793e7483ad
commit
833e8164ee
@ -540,7 +540,7 @@ int rmsgpack_read(FILE *fp,
|
||||
case 0xcd:
|
||||
case 0xce:
|
||||
case 0xcf:
|
||||
tmp_len = 1UL << (type - 0xcc);
|
||||
tmp_len = UINT32_C(1) << (type - 0xcc);
|
||||
tmp_uint = 0;
|
||||
if (read_uint(fp, &tmp_uint, (size_t)tmp_len) == -1)
|
||||
return -errno;
|
||||
@ -552,7 +552,7 @@ int rmsgpack_read(FILE *fp,
|
||||
case 0xd1:
|
||||
case 0xd2:
|
||||
case 0xd3:
|
||||
tmp_len = 1UL << (type - 0xd0);
|
||||
tmp_len = UINT32_C(1) << (type - 0xd0);
|
||||
tmp_int = 0;
|
||||
if (read_int(fp, &tmp_int, (size_t)tmp_len) == -1)
|
||||
return -errno;
|
||||
|
Loading…
Reference in New Issue
Block a user