changeset 1651:c42e849d95c1 draft

Fix configure test for arc4random on FreeBSD 7
author Roy Marples <roy@marples.name>
date Sat, 04 Feb 2012 14:25:11 +0000
parents 9bd09ac9b9fb
children ae71f943e59e
files configure
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Fri Feb 03 00:02:03 2012 +0000
+++ b/configure	Sat Feb 04 14:25:11 2012 +0000
@@ -282,7 +282,7 @@
 	cat <<EOF >_arc4random.c
 #include <stdlib.h>
 int main(void) {
-	uint32_t r = arc4random();
+	arc4random();
 	return 0;
 }
 EOF