From b214af4ccf57ab031ac187500da4334603ac489a Mon Sep 17 00:00:00 2001 From: Jeff Lenk Date: Wed, 8 May 2013 08:37:10 -0500 Subject: [PATCH] FS-5389 --resolve --- src/switch_xml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_xml.c b/src/switch_xml.c index d411e90fe4..31915f5f7f 100644 --- a/src/switch_xml.c +++ b/src/switch_xml.c @@ -1946,7 +1946,7 @@ static switch_status_t switch_xml_locate_user_cache(const char *key, const char time_now = switch_micro_time_now(); time_expires = atol(expires_lookup); - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Cache Info\nTime Now:\t%ld\nExpires:\t%ld\n", time_now, time_expires); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Cache Info\nTime Now:\t%ld\nExpires:\t%ld\n", (long)time_now, (long)time_expires); if (time_expires < time_now) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Cache expired for %s@%s, doing fresh lookup\n", user_name, domain_name); } else {