summaryrefslogtreecommitdiff
path: root/misc/netware
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2002-12-20 20:23:10 +0000
committerBradley Nicholes <bnicholes@apache.org>2002-12-20 20:23:10 +0000
commit683c3f97ad788dbf1d3e6ea17f330555814265f1 (patch)
tree8c156ae0c4f1877f57cd14ff91a12b79cce3969f /misc/netware
parentafc0dac04fb0bce8fcc04d308632171a1a938b14 (diff)
downloadapr-683c3f97ad788dbf1d3e6ea17f330555814265f1.tar.gz
Fixed prototype mismatch
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64203 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'misc/netware')
-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);
}