aboutsummaryrefslogtreecommitdiff
path: root/include/fcall.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/fcall.h')
-rw-r--r--include/fcall.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fcall.h b/include/fcall.h
index aebb4515..a5dae337 100644
--- a/include/fcall.h
+++ b/include/fcall.h
@@ -50,7 +50,7 @@ struct Fcall
#define GBIT8(p) ((p)[0])
#define GBIT16(p) ((p)[0]|((p)[1]<<8))
-#define GBIT32(p) ((p)[0]|((p)[1]<<8)|((p)[2]<<16)|((p)[3]<<24))
+#define GBIT32(p) ((u32int)((p)[0]|((p)[1]<<8)|((p)[2]<<16)|((p)[3]<<24)))
#define GBIT64(p) ((u32int)((p)[0]|((p)[1]<<8)|((p)[2]<<16)|((p)[3]<<24)) |\
((vlong)((p)[4]|((p)[5]<<8)|((p)[6]<<16)|((p)[7]<<24)) << 32))