diff options
Diffstat (limited to 'src/or/hs_common.c')
-rw-r--r-- | src/or/hs_common.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/or/hs_common.c b/src/or/hs_common.c index 22a845f911..27330bfcdb 100644 --- a/src/or/hs_common.c +++ b/src/or/hs_common.c @@ -459,9 +459,10 @@ hs_parse_address(const char *address, ed25519_public_key_t *key_out, /* Obvious length check. */ if (strlen(address) != HS_SERVICE_ADDR_LEN_BASE32) { log_warn(LD_REND, "Service address %s has an invalid length. " - "Expected %ld but got %lu.", - escaped_safe_str(address), HS_SERVICE_ADDR_LEN_BASE32, - strlen(address)); + "Expected %lu but got %lu.", + escaped_safe_str(address), + (unsigned long) HS_SERVICE_ADDR_LEN_BASE32, + (unsigned long) strlen(address)); goto invalid; } |