summaryrefslogtreecommitdiff
path: root/lib/rand.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-11-21 07:51:42 +0100
committerDaniel Stenberg <daniel@haxx.se>2016-11-21 07:51:42 +0100
commitf18f7bf934233146b18d087658224d734c6d0791 (patch)
tree034d98addf5e8f928687da630cb9522ed34e27fc /lib/rand.h
parent8626632f3e1a3f8edb48187f73b7633334bf09e5 (diff)
downloadcurl-f18f7bf934233146b18d087658224d734c6d0791.tar.gz
rand: pass in number of randoms as an unsigned argument
Diffstat (limited to 'lib/rand.h')
-rw-r--r--lib/rand.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rand.h b/lib/rand.h
index 36f89b526..0f8986120 100644
--- a/lib/rand.h
+++ b/lib/rand.h
@@ -37,6 +37,7 @@
* easy handle!
*
*/
-CURLcode Curl_rand(struct Curl_easy *data, unsigned int *rnd, int num);
+CURLcode Curl_rand(struct Curl_easy *data, unsigned int *rnd,
+ unsigned int num);
#endif /* HEADER_CURL_RAND_H */