[asterisk-commits] russell: trunk r118695 - /trunk/utils/check_expr.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed May 28 10:56:42 CDT 2008


Author: russell
Date: Wed May 28 10:56:41 2008
New Revision: 118695

URL: http://svn.digium.com/view/asterisk?view=rev&rev=118695
Log:
Fix a linkage error related to the lock backtrace support

Modified:
    trunk/utils/check_expr.c

Modified: trunk/utils/check_expr.c
URL: http://svn.digium.com/view/asterisk/trunk/utils/check_expr.c?view=diff&rev=118695&r1=118694&r2=118695
==============================================================================
--- trunk/utils/check_expr.c (original)
+++ trunk/utils/check_expr.c Wed May 28 10:56:41 2008
@@ -122,6 +122,13 @@
     /* not a lot to do in a standalone w/o threading! */
 }
 #endif
+
+int ast_bt_get_addresses(struct ast_bt *bt);
+int ast_bt_get_addresses(struct ast_bt *bt)
+{
+	/* Suck it, you stupid utils directory! */
+	return 0;
+}
 
 static int global_lineno = 1;
 static int global_expr_count=0;




More information about the asterisk-commits mailing list