From bb630acdb0019e4bd2fdd0ade18cb77288d9422d Mon Sep 17 00:00:00 2001 From: Stefan Esser Date: Sun, 12 Feb 2012 11:03:06 +0100 Subject: Silence some more compiler warnings --- execute.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'execute.c') diff --git a/execute.c b/execute.c index bb092db..1ec38cd 100644 --- a/execute.c +++ b/execute.c @@ -1344,7 +1344,7 @@ static void suhosin_gen_entropy(php_uint32 *seedbuf TSRMLS_DC) suhosin_SHA256Init(&context); suhosin_SHA256Update(&context, (void *) seedbuf, sizeof(php_uint32) * 8); - suhosin_SHA256Final(seedbuf, &context); + suhosin_SHA256Final((void *)seedbuf, &context); } /* }}} */ -- cgit v1.3