mirror of
https://github.com/libretro/RetroArch
synced 2025-03-25 16:44:01 +00:00
(libretrodb) Backport UINT32_C
This commit is contained in:
parent
16864b34f4
commit
0e5b18a619
@ -528,7 +528,7 @@ int rmsgpack_read(int fd,
|
|||||||
case 0xcd:
|
case 0xcd:
|
||||||
case 0xce:
|
case 0xce:
|
||||||
case 0xcf:
|
case 0xcf:
|
||||||
tmp_len = 1ULL << (type - 0xcc);
|
tmp_len = UINT32_C(1) << (type - 0xcc);
|
||||||
tmp_uint = 0;
|
tmp_uint = 0;
|
||||||
if (read_uint(fd, &tmp_uint, tmp_len) == -1)
|
if (read_uint(fd, &tmp_uint, tmp_len) == -1)
|
||||||
return -errno;
|
return -errno;
|
||||||
@ -540,7 +540,7 @@ int rmsgpack_read(int fd,
|
|||||||
case 0xd1:
|
case 0xd1:
|
||||||
case 0xd2:
|
case 0xd2:
|
||||||
case 0xd3:
|
case 0xd3:
|
||||||
tmp_len = 1ULL << (type - 0xd0);
|
tmp_len = UINT32_C(1) << (type - 0xd0);
|
||||||
tmp_int = 0;
|
tmp_int = 0;
|
||||||
if (read_int(fd, &tmp_int, tmp_len) == -1)
|
if (read_int(fd, &tmp_int, tmp_len) == -1)
|
||||||
return -errno;
|
return -errno;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user