From c40628c17214a7a7ce6b970c2acb1578cbdc1542 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Fri, 22 Feb 2008 10:14:07 +0000 Subject: [PATCH] * support/htpasswd.c (seed_rand): Fix compiler warning. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630139 13f79535-47bb-0310-9956-ffa450edef68 --- support/htpasswd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/htpasswd.c b/support/htpasswd.c index c3d1d5fb4f3..c94f2a75734 100644 --- a/support/htpasswd.c +++ b/support/htpasswd.c @@ -126,7 +126,7 @@ static void generate_salt(char *s, size_t size) } } -static apr_status_t seed_rand() +static apr_status_t seed_rand(void) { int seed = 0; apr_status_t rv; -- 2.47.2