From 995c4277dad7f35c9955c4a978c5a38a7e034f6a Mon Sep 17 00:00:00 2001
From: Rupa Schomaker <rupa@rupa.com>
Date: Tue, 20 Apr 2010 12:21:46 -0500
Subject: [PATCH] more %lu->SWITCH_SIZE_T_FMT

---
 src/mod/endpoints/mod_sofia/mod_sofia.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mod/endpoints/mod_sofia/mod_sofia.c b/src/mod/endpoints/mod_sofia/mod_sofia.c
index 77510d4570..1f289499dd 100644
--- a/src/mod/endpoints/mod_sofia/mod_sofia.c
+++ b/src/mod/endpoints/mod_sofia/mod_sofia.c
@@ -891,13 +891,13 @@ static switch_status_t sofia_read_frame(switch_core_session_t *session, switch_f
 					snprintf(buf,  sizeof(buf), "%u", rtcp_frame.octect_count);
 					switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "Octect-Packet-Count", buf);
 
-					snprintf(buf, sizeof(buf), "%lu", tech_pvt->read_frame.timestamp);
+					snprintf(buf, sizeof(buf), "%" SWITCH_SIZE_T_FMT, tech_pvt->read_frame.timestamp);
 					switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "Last-RTP-Timestamp", buf);
 
 					snprintf(buf, sizeof(buf), "%u", tech_pvt->read_frame.rate);
 					switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "RTP-Rate", buf);
 
-					snprintf(buf, sizeof(buf), "%lu", switch_time_now());
+					snprintf(buf, sizeof(buf), "%" SWITCH_SIZE_T_FMT, switch_time_now());
 					switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "Capture-Time", buf);
 
 					switch_event_fire(&event);