diff options
author | Jeremy Allison <jra@samba.org> | 1998-05-19 04:49:56 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-05-19 04:49:56 +0000 |
commit | 643e16be620b920f72f59a037e0d0d4940016a29 (patch) | |
tree | 158804c4c4ae2087b45c63d473357d36b166f654 /source3/lib/util.c | |
parent | d9e4b23674e4084b2fd88a5b2e3b0ffea752568a (diff) | |
download | samba-643e16be620b920f72f59a037e0d0d4940016a29.tar.gz samba-643e16be620b920f72f59a037e0d0d4940016a29.tar.bz2 samba-643e16be620b920f72f59a037e0d0d4940016a29.zip |
Fixed signed/unsigned warning.
Jeremy.
(This used to be commit 6b6539cad8962f2913d892abae811afc72432678)
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r-- | source3/lib/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |