aboutsummaryrefslogtreecommitdiffstats
path: root/code/game/g_mem.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/game/g_mem.c')
-rw-r--r--code/game/g_mem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/game/g_mem.c b/code/game/g_mem.c
index 841fe2f..dbeb301 100644
--- a/code/game/g_mem.c
+++ b/code/game/g_mem.c
@@ -41,7 +41,7 @@ void *G_Alloc( int size ) {
}
if ( allocPoint + size > POOLSIZE ) {
- G_Error( "G_Alloc: failed on allocation of %i bytes\n", size ); // bk010103 - was %u, but is signed
+ G_Error( "G_Alloc: failed on allocation of %i bytes\n", size );
return NULL;
}