[Freeswitch-svn] [commit] r10078 - freeswitch/trunk/src/mod/endpoints/mod_iax

Freeswitch SVN mikej at freeswitch.org
Mon Oct 20 08:57:43 EDT 2008


Author: mikej
Date: Mon Oct 20 08:57:43 2008
New Revision: 10078

Modified:
   freeswitch/trunk/src/mod/endpoints/mod_iax/iax2-parser.c

Log:
(FSBUILD-83) format string issue found by new gcc.

Modified: freeswitch/trunk/src/mod/endpoints/mod_iax/iax2-parser.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_iax/iax2-parser.c	(original)
+++ freeswitch/trunk/src/mod/endpoints/mod_iax/iax2-parser.c	Mon Oct 20 08:57:43 2008
@@ -56,7 +56,7 @@
 
 static void internaloutput(const char *str)
 {
-	printf(str);
+	printf("%s", str);
 }
 
 static void internalerror(const char *str)



More information about the Freeswitch-svn mailing list