bnicholes 2002/12/20 12:23:11
Modified: misc/netware rand.c
Log:
Fixed prototype mismatch
Revision Changes Path
1.5 +1 -1 apr/misc/netware/rand.c
Index: rand.c
===================================================================
RCS file: /home/cvs/apr/misc/netware/rand.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- rand.c 13 Mar 2002 20:39:22 -0000 1.4
+++ rand.c 20 Dec 2002 20:23:10 -0000 1.5
@@ -62,7 +62,7 @@
#include <nks/plat.h>
APR_DECLARE(apr_status_t) apr_generate_random_bytes(unsigned char *buf,
- int length)
+ apr_size_t length)
{
return NXSeedRandom(length, buf);
}