[svn-commits] russell: trunk r164202 - /trunk/apps/app_jack.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Mon Dec 15 08:40:08 CST 2008
Author: russell
Date: Mon Dec 15 08:40:08 2008
New Revision: 164202
URL: http://svn.digium.com/view/asterisk?view=rev&rev=164202
Log:
Fix build WRT ast_str_opaque
Modified:
trunk/apps/app_jack.c
Modified: trunk/apps/app_jack.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_jack.c?view=diff&rev=164202&r1=164201&r2=164202
==============================================================================
--- trunk/apps/app_jack.c (original)
+++ trunk/apps/app_jack.c Mon Dec 15 08:40:08 2008
@@ -182,7 +182,7 @@
ast_str_append(&str, 0, ", %s", jack_status_to_str((1 << i)));
}
- ast_log(LOG_NOTICE, "%s: %s\n", prefix, str->str);
+ ast_log(LOG_NOTICE, "%s: %s\n", prefix, ast_str_buffer(str));
}
static int alloc_resampler(struct jack_data *jack_data, int input)
More information about the svn-commits
mailing list