summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2002-12-20 20:23:10 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2002-12-20 20:23:10 +0000
commitf7945e6f624cd7cdd1512b22e371581f7191f23c (patch)
tree8c156ae0c4f1877f57cd14ff91a12b79cce3969f /misc
parentc4d893b2b8915e128fcb75dfa2fa097921e40fbc (diff)
downloadlibapr-f7945e6f624cd7cdd1512b22e371581f7191f23c.tar.gz
Fixed prototype mismatch
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64203 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'misc')
-rw-r--r--misc/netware/rand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/netware/rand.c b/misc/netware/rand.c
index ea38026c6..00ee5d619 100644
--- a/misc/netware/rand.c
+++ b/misc/netware/rand.c
@@ -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);
}