[svn-commits] rmudgett: branch 1.8 r302318 - /branches/1.8/main/features.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Tue Jan 18 16:04:18 CST 2011
Author: rmudgett
Date: Tue Jan 18 16:04:14 2011
New Revision: 302318
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=302318
Log:
Use the expanded format type instead of plain int.
Modified:
branches/1.8/main/features.c
Modified: branches/1.8/main/features.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/main/features.c?view=diff&rev=302318&r1=302317&r2=302318
==============================================================================
--- branches/1.8/main/features.c (original)
+++ branches/1.8/main/features.c Tue Jan 18 16:04:14 2011
@@ -743,7 +743,7 @@
static struct ast_channel *feature_request_and_dial(struct ast_channel *caller,
const char *caller_name, struct ast_channel *requestor,
- struct ast_channel *transferee, const char *type, int format, void *data,
+ struct ast_channel *transferee, const char *type, format_t format, void *data,
int timeout, int *outstate, const char *language);
/*!
@@ -2971,7 +2971,7 @@
*/
static struct ast_channel *feature_request_and_dial(struct ast_channel *caller,
const char *caller_name, struct ast_channel *requestor,
- struct ast_channel *transferee, const char *type, int format, void *data,
+ struct ast_channel *transferee, const char *type, format_t format, void *data,
int timeout, int *outstate, const char *language)
{
int state = 0;
More information about the svn-commits
mailing list