From 643e16be620b920f72f59a037e0d0d4940016a29 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 19 May 1998 04:49:56 +0000 Subject: Fixed signed/unsigned warning. Jeremy. (This used to be commit 6b6539cad8962f2913d892abae811afc72432678) --- source3/lib/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/lib/util.c b/source3/lib/util.c index 48492e5eb6..4c8133cabf 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -3736,7 +3736,7 @@ void reset_globals_after_fork(void) * sequence. */ { - char dummy; + unsigned char dummy; generate_random_buffer( &dummy, 1, True); } } -- cgit