From: Jeff Trawick Date: Thu, 22 Feb 2001 14:22:39 +0000 (+0000) Subject: clean up a call to apr_psprintf() (trailing NULL not needed) X-Git-Tag: 2.0.12~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3351f1b91fc99c38027e06c9bfa0c86357b17045;p=thirdparty%2Fapache%2Fhttpd.git clean up a call to apr_psprintf() (trailing NULL not needed) previously: mod_auth_digest.c: In function `set_shmem_size': mod_auth_digest.c:625: warning: too many arguments for format git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88275 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c index 34132702815..7263b6a963c 100644 --- a/modules/aaa/mod_auth_digest.c +++ b/modules/aaa/mod_auth_digest.c @@ -622,7 +622,7 @@ static const char *set_shmem_size(cmd_parms *cmd, void *config, min = sizeof(*client_list) + sizeof(client_entry*) + sizeof(client_entry); if (size < min) return apr_psprintf(cmd->pool, "size in AuthDigestShmemSize too small: " - "%ld < %ld", size, min, NULL); + "%ld < %ld", size, min); shmem_size = size; num_buckets = (size - sizeof(*client_list)) /