From 979776bf1d7319218d84dd488ed69a45a854dce1 Mon Sep 17 00:00:00 2001 From: /dev/humancontroller Date: Thu, 13 Apr 2017 11:30:00 +0000 Subject: fix/silence a couple of compiler warnings --- src/game/g_mem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game/g_mem.c') diff --git a/src/game/g_mem.c b/src/game/g_mem.c index ea8e438..690e136 100644 --- a/src/game/g_mem.c +++ b/src/game/g_mem.c @@ -48,7 +48,7 @@ void *G_Alloc( int size ) char *endptr; int *ptr; - allocsize = ( size + sizeof(int) + ROUNDBITS ) & ~ROUNDBITS; // Round to 32-byte boundary + allocsize = (int)( ( (size_t)size + (size_t)sizeof(int) + (size_t)ROUNDBITS ) & ~(size_t)ROUNDBITS ); // Round to 32-byte boundary ptr = NULL; smallest = NULL; -- cgit