summaryrefslogtreecommitdiff
path: root/execute.c
diff options
context:
space:
mode:
authorStefan Esser2012-02-12 11:03:06 +0100
committerStefan Esser2012-02-12 11:03:06 +0100
commitbb630acdb0019e4bd2fdd0ade18cb77288d9422d (patch)
tree80b0b03b727a700a2555d4d222d5feeed4f0ff32 /execute.c
parentfbab5b88bc9edecb26ede9bc3bf94331af2e559e (diff)
Silence some more compiler warnings
Diffstat (limited to '')
-rw-r--r--execute.c2
1 files changed, 1 insertions, 1 deletions
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)
1344 1344
1345 suhosin_SHA256Init(&context); 1345 suhosin_SHA256Init(&context);
1346 suhosin_SHA256Update(&context, (void *) seedbuf, sizeof(php_uint32) * 8); 1346 suhosin_SHA256Update(&context, (void *) seedbuf, sizeof(php_uint32) * 8);
1347 suhosin_SHA256Final(seedbuf, &context); 1347 suhosin_SHA256Final((void *)seedbuf, &context);
1348} 1348}
1349/* }}} */ 1349/* }}} */
1350 1350