From 2ba303d950bc5b5ce8774f2e6e551442f263af87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Mon, 27 Aug 2012 10:07:54 +0000 Subject: [PATCH] Boost Jam update to remove a 'pointer to integer of different size' warning displayed when building using the mingw64 toolset. [SVN r80251] --- src/engine/function.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/function.c b/src/engine/function.c index 71dfa9500..7ae07535d 100644 --- a/src/engine/function.c +++ b/src/engine/function.c @@ -227,7 +227,7 @@ STACK * stack_global() static void check_alignment( STACK * s ) { - assert( (unsigned long)s->data % sizeof( LIST * ) == 0 ); + assert( (size_t)s->data % sizeof( LIST * ) == 0 ); } void * stack_allocate( STACK * s, int size )