summaryrefslogtreecommitdiff
path: root/include/asterisk/astobj.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asterisk/astobj.h')
-rw-r--r--include/asterisk/astobj.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/astobj.h b/include/asterisk/astobj.h
index d32a7d0e1..a18d70658 100644
--- a/include/asterisk/astobj.h
+++ b/include/asterisk/astobj.h
@@ -798,7 +798,7 @@ extern "C" {
* refcount fields of an object to the specfied string buffer.
*/
#define ASTOBJ_DUMP(s,slen,obj) \
- snprintf((s),(slen),"name: %s\nobjflags: %d\nrefcount: %d\n\n", (obj)->name, (obj)->objflags, (obj)->refcount);
+ snprintf((s),(slen),"name: %s\nobjflags: %u\nrefcount: %u\n\n", (obj)->name, (obj)->objflags, (obj)->refcount);
/*! \brief Dump information about all the objects in a container to a file descriptor.
*