summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-05-19 04:49:56 +0000
committerJeremy Allison <jra@samba.org>1998-05-19 04:49:56 +0000
commit6b6539cad8962f2913d892abae811afc72432678 (patch)
tree6e23e828921e1fa4f0c3404b314bed0af8e8cc99
parent2f9f0a88e8220575edb43a9945d0b60829efa840 (diff)
downloadsamba-6b6539cad8962f2913d892abae811afc72432678.tar.gz
samba-6b6539cad8962f2913d892abae811afc72432678.tar.xz
samba-6b6539cad8962f2913d892abae811afc72432678.zip
Fixed signed/unsigned warning.
Jeremy.
-rw-r--r--source/lib/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/util.c b/source/lib/util.c
index 48492e5eb66..4c8133cabf4 100644
--- a/source/lib/util.c
+++ b/source/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);
}
}