summaryrefslogtreecommitdiffstats
path: root/generic/tclCkalloc.c
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2011-07-12 15:19:43 (GMT)
committerdgp@users.sourceforge.net <dgp>2011-07-12 15:19:43 (GMT)
commit1fe2aaa84292c1772dd98b7df5c54f46b89d3a43 (patch)
tree15027b41013adb483bd34fc5fbe8cf8ed4151697 /generic/tclCkalloc.c
parentf8f8e0a5f601eca6561da98409e1ad4de9d13760 (diff)
parentfbc3574d3292590399b667c59479d63246673fbe (diff)
downloadtcl-1fe2aaa84292c1772dd98b7df5c54f46b89d3a43.zip
tcl-1fe2aaa84292c1772dd98b7df5c54f46b89d3a43.tar.gz
tcl-1fe2aaa84292c1772dd98b7df5c54f46b89d3a43.tar.bz2
Silence type match warnings in debug print.
Diffstat (limited to 'generic/tclCkalloc.c')
-rw-r--r--generic/tclCkalloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCkalloc.c b/generic/tclCkalloc.c
index 9d3d6d7..c374ce5 100644
--- a/generic/tclCkalloc.c
+++ b/generic/tclCkalloc.c
@@ -179,9 +179,9 @@ TclDumpMemoryInfo(ClientData clientData, int flags)
total_mallocs,
total_frees,
current_malloc_packets,
- current_bytes_malloced,
+ (unsigned long)current_bytes_malloced,
maximum_malloc_packets,
- maximum_bytes_malloced);
+ (unsigned long)maximum_bytes_malloced);
if (flags == 0) {
fprintf((FILE *)clientData, buf);
} else {