Skip to content

Commit 56fe4f4

Browse files
author
Hans Zandbelt
committed
fix format specifier compiler warning
1 parent 53811b4 commit 56fe4f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cache/shm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ static apr_byte_t oidc_cache_shm_set(request_rec *r, const char *section,
233233

234234
/* check that the passed in value is valid */
235235
if ((value != NULL) && (strlen(value) > (cfg->cache_shm_entry_size_max - sizeof(oidc_cache_shm_entry_t)))) {
236-
oidc_error(r, "could not store value since value size is too large (%llu > %lu); consider increasing OIDCCacheShmEntrySizeMax",
236+
oidc_error(r, "could not store value since value size is too large (%llu > %u); consider increasing OIDCCacheShmEntrySizeMax",
237237
(unsigned long long)strlen(value), (cfg->cache_shm_entry_size_max - sizeof(oidc_cache_shm_entry_t)));
238238
return FALSE;
239239
}

0 commit comments

Comments
 (0)