mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-02 10:22:46 +00:00
Fix character string being treated ad format string
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@109482 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -813,7 +813,7 @@ extern "C" {
|
|||||||
* descriptor.
|
* descriptor.
|
||||||
*/
|
*/
|
||||||
#define ASTOBJ_CONTAINER_DUMP(fd,s,slen,container) \
|
#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)
|
#if defined(__cplusplus) || defined(c_plusplus)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user