diff options
Diffstat (limited to 'lib/isc/entropy.c')
-rw-r--r-- | lib/isc/entropy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/isc/entropy.c b/lib/isc/entropy.c index d046e3e7..3f9ec233 100644 --- a/lib/isc/entropy.c +++ b/lib/isc/entropy.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: entropy.c,v 1.3.2.1 2001/09/06 00:14:17 gson Exp $ */ +/* $Id: entropy.c,v 1.3.2.2 2003/07/23 06:57:53 marka Exp $ */ /* * This is the system independent part of the entropy module. It is @@ -303,7 +303,7 @@ entropypool_adddata(isc_entropy_t *ent, void *p, unsigned int len, addr = (unsigned long)p; buf = p; - if ((addr & 0x03) != 0) { + if ((addr & 0x03U) != 0U) { val = 0; switch (len) { case 3: |