[asterisk-commits] kmoore: trunk r418980 - /trunk/res/res_fax_spandsp.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Jul 18 14:07:16 CDT 2014
Author: kmoore
Date: Fri Jul 18 14:07:12 2014
New Revision: 418980
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=418980
Log:
Fix build in dev-mode
Modified:
trunk/res/res_fax_spandsp.c
Modified: trunk/res/res_fax_spandsp.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_fax_spandsp.c?view=diff&rev=418980&r1=418979&r2=418980
==============================================================================
--- trunk/res/res_fax_spandsp.c (original)
+++ trunk/res/res_fax_spandsp.c Fri Jul 18 14:07:12 2014
@@ -1090,7 +1090,7 @@
}
ao2_lock(session);
- res = ast_str_append(&message_string, 0, "SessionNumber: %d\r\n", session->id);
+ res = ast_str_append(&message_string, 0, "SessionNumber: %u\r\n", session->id);
res |= ast_str_append(&message_string, 0, "Operation: %s\r\n", ast_fax_session_operation_str(session));
res |= ast_str_append(&message_string, 0, "State: %s\r\n", ast_fax_state_to_str(session->state));
More information about the asterisk-commits
mailing list