mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-17 17:07:39 -07:00
Fix character string being treated as format string
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@109488 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -743,7 +743,7 @@ extern "C" {
|
||||
* descriptor.
|
||||
*/
|
||||
#define ASTOBJ_CONTAINER_DUMP(fd,s,slen,container) \
|
||||
ASTOBJ_CONTAINER_TRAVERSE(container, 1, do { ASTOBJ_DUMP(s,slen,iterator); ast_cli(fd, s); } while(0))
|
||||
ASTOBJ_CONTAINER_TRAVERSE(container, 1, do { ASTOBJ_DUMP(s,slen,iterator); ast_cli(fd, "%s", s); } while(0))
|
||||
|
||||
#if defined(__cplusplus) || defined(c_plusplus)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user