[asterisk-commits] file: trunk r47461 - /trunk/pbx/pbx_dundi.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Fri Nov 10 12:42:15 MST 2006
Author: file
Date: Fri Nov 10 13:42:15 2006
New Revision: 47461
URL: http://svn.digium.com/view/asterisk?view=rev&rev=47461
Log:
Hello compiler working, goodbye compiler warning. (fix compiler warning introduced from pbx_dundi optimizations)
Modified:
trunk/pbx/pbx_dundi.c
Modified: trunk/pbx/pbx_dundi.c
URL: http://svn.digium.com/view/asterisk/trunk/pbx/pbx_dundi.c?view=diff&rev=47461&r1=47460&r2=47461
==============================================================================
--- trunk/pbx/pbx_dundi.c (original)
+++ trunk/pbx/pbx_dundi.c Fri Nov 10 13:42:15 2006
@@ -1991,7 +1991,7 @@
return 1;
}
if (res < sizeof(struct dundi_hdr)) {
- ast_log(LOG_WARNING, "midget packet received (%d of %d min)\n", res, sizeof(struct dundi_hdr));
+ ast_log(LOG_WARNING, "midget packet received (%d of %ld min)\n", res, sizeof(struct dundi_hdr));
return 1;
}
buf[res] = '\0';
More information about the asterisk-commits
mailing list