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-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=23397fb92cee3c0713696023c678af5e6c4c8616;p=apache 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 3413270281..7263b6a963 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)) /