From: Joe Orton Date: Fri, 22 Feb 2008 10:14:07 +0000 (+0000) Subject: * support/htpasswd.c (seed_rand): Fix compiler warning. X-Git-Tag: 2.3.0~950 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c40628c17214a7a7ce6b970c2acb1578cbdc1542;p=thirdparty%2Fapache%2Fhttpd.git * 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 --- 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;