[Freeswitch-svn] [commit] r10639 - freeswitch/trunk/src/mod/applications/mod_vmd

FreeSWITCH SVN stkn at freeswitch.org
Sat Dec 6 08:22:28 PST 2008


Author: stkn
Date: Sat Dec  6 11:22:26 2008
New Revision: 10639

Log:
Add cast to int to silence format mismatch warning

Modified:
   freeswitch/trunk/src/mod/applications/mod_vmd/mod_vmd.c

Modified: freeswitch/trunk/src/mod/applications/mod_vmd/mod_vmd.c
==============================================================================
--- freeswitch/trunk/src/mod/applications/mod_vmd/mod_vmd.c	(original)
+++ freeswitch/trunk/src/mod/applications/mod_vmd/mod_vmd.c	Sat Dec  6 11:22:26 2008
@@ -282,7 +282,7 @@
 			}
 
 			switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, "Beep-Status", "stop");
-			switch_event_add_header(event, SWITCH_STACK_BOTTOM, "Beep-Time", "%d", vmd_info->timestamp / POINTS);
+			switch_event_add_header(event, SWITCH_STACK_BOTTOM, "Beep-Time", "%d", (int)vmd_info->timestamp / POINTS);
 			switch_event_add_header(event, SWITCH_STACK_BOTTOM, "Unique-ID",
 				"%s", switch_core_session_get_uuid(vmd_info->session));
 			switch_event_add_header(event, SWITCH_STACK_BOTTOM, "Frequency", "%6.4lf", vmd_info->beep_freq);



More information about the Freeswitch-svn mailing list