ref: 8a4304a40c9f4d461f8d8cd791076f9f80586eff
parent: e5e39adf2d8810e8a0aca2acf4e825ebcb21e3ed
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Tue Oct 1 20:47:13 EDT 2024
r32: fix a warning (thanks be0ba)
--- a/proto.c
+++ b/proto.c
@@ -78,7 +78,7 @@
r32(uint8_t **p)
{
*p += 4;
- return (*p)[-4]<<0 | (*p)[-3]<<8 | (*p)[-2]<<16 | (*p)[-1]<<24;
+ return (*p)[-4]<<0 | (*p)[-3]<<8 | (*p)[-2]<<16 | (uint32_t)((*p)[-1])<<24;
}
static uint64_t