diff options
| author | dgp <dgp@users.sourceforge.net> | 2011-07-12 15:19:43 (GMT) |
|---|---|---|
| committer | dgp <dgp@users.sourceforge.net> | 2011-07-12 15:19:43 (GMT) |
| commit | c7a0c81b33d15b3d7aa517fafe5e87e34b7cf83c (patch) | |
| tree | 15027b41013adb483bd34fc5fbe8cf8ed4151697 | |
| parent | 87d7ad395826aac8d931293e7a61342945b1c746 (diff) | |
| parent | f68e0956811e95ac8846d64a4bfa0113de5c3650 (diff) | |
| download | tcl-c7a0c81b33d15b3d7aa517fafe5e87e34b7cf83c.zip tcl-c7a0c81b33d15b3d7aa517fafe5e87e34b7cf83c.tar.gz tcl-c7a0c81b33d15b3d7aa517fafe5e87e34b7cf83c.tar.bz2 | |
Silence type match warnings in debug print.
| -rw-r--r-- | generic/tclCkalloc.c | 4 |
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 { |
