[svn-commits] tilghman: trunk r346429 - /trunk/utils/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Nov 29 14:32:56 CST 2011


Author: tilghman
Date: Tue Nov 29 14:32:53 2011
New Revision: 346429

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=346429
Log:
Fix compilation of utilities (caught by Bamboo).

Modified:
    trunk/utils/ael_main.c
    trunk/utils/hashtest.c
    trunk/utils/hashtest2.c
    trunk/utils/refcounter.c

Modified: trunk/utils/ael_main.c
URL: http://svnview.digium.com/svn/asterisk/trunk/utils/ael_main.c?view=diff&rev=346429&r1=346428&r2=346429
==============================================================================
--- trunk/utils/ael_main.c (original)
+++ trunk/utils/ael_main.c Tue Nov 29 14:32:53 2011
@@ -122,7 +122,7 @@
 void ast_context_destroy(void);
 void ast_log(int level, const char *file, int line, const char *function, const char *fmt, ...);
 char *ast_process_quotes_and_slashes(char *start, char find, char replace_with);
-void __ast_verbose(const char *file, int line, const char *func, const char *fmt, ...);
+void __ast_verbose(const char *file, int line, const char *func, int level, const char *fmt, ...);
 struct ast_app *pbx_findapp(const char *app);
 void filter_leading_space_from_exprs(char *str);
 void filter_newlines(char *str);

Modified: trunk/utils/hashtest.c
URL: http://svnview.digium.com/svn/asterisk/trunk/utils/hashtest.c?view=diff&rev=346429&r1=346428&r2=346429
==============================================================================
--- trunk/utils/hashtest.c (original)
+++ trunk/utils/hashtest.c Tue Nov 29 14:32:53 2011
@@ -356,7 +356,7 @@
 	va_end(vars);
 }
 
-void __ast_verbose(const char *file, int line, const char *func, const char *fmt, ...)
+void __ast_verbose(const char *file, int line, const char *func, int level, const char *fmt, ...)
 {
         va_list vars;
         va_start(vars,fmt);

Modified: trunk/utils/hashtest2.c
URL: http://svnview.digium.com/svn/asterisk/trunk/utils/hashtest2.c?view=diff&rev=346429&r1=346428&r2=346429
==============================================================================
--- trunk/utils/hashtest2.c (original)
+++ trunk/utils/hashtest2.c Tue Nov 29 14:32:53 2011
@@ -368,7 +368,7 @@
 	va_end(vars);
 }
 
-void __ast_verbose(const char *file, int line, const char *func, const char *fmt, ...)
+void __ast_verbose(const char *file, int line, const char *func, int level, const char *fmt, ...)
 {
         va_list vars;
         va_start(vars,fmt);

Modified: trunk/utils/refcounter.c
URL: http://svnview.digium.com/svn/asterisk/trunk/utils/refcounter.c?view=diff&rev=346429&r1=346428&r2=346429
==============================================================================
--- trunk/utils/refcounter.c (original)
+++ trunk/utils/refcounter.c Tue Nov 29 14:32:53 2011
@@ -259,7 +259,7 @@
 	va_end(vars);
 }
 
-void __ast_verbose(const char *file, int line, const char *func, const char *fmt, ...)
+void __ast_verbose(const char *file, int line, const char *func, int level, const char *fmt, ...)
 {
         va_list vars;
         va_start(vars,fmt);




More information about the svn-commits mailing list