diff options
author | Joe Orton <jorton@apache.org> | 2008-02-22 11:14:07 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2008-02-22 11:14:07 +0100 |
commit | c40628c17214a7a7ce6b970c2acb1578cbdc1542 (patch) | |
tree | 8b2a6738f3cea06740ac6c1841faeb53bf47678d /support/htpasswd.c | |
parent | backported in r629983 (diff) | |
download | apache2-c40628c17214a7a7ce6b970c2acb1578cbdc1542.tar.xz apache2-c40628c17214a7a7ce6b970c2acb1578cbdc1542.zip |
* 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
Diffstat (limited to 'support/htpasswd.c')
-rw-r--r-- | support/htpasswd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/htpasswd.c b/support/htpasswd.c index c3d1d5fb4f..c94f2a7573 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; |