summaryrefslogtreecommitdiff
path: root/source3/lib/talloc.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2006-09-04 08:55:58 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:39:49 -0500
commit5f2b59622ea1d2ca72577e3c7f60c5868a2aa20a (patch)
tree50e9bf1124d75e13f7bf4366601d0055a6df277a /source3/lib/talloc.c
parentb85e21d3f4c172e0dd2f194c2370653aa38101ee (diff)
downloadsamba-5f2b59622ea1d2ca72577e3c7f60c5868a2aa20a.tar.gz
samba-5f2b59622ea1d2ca72577e3c7f60c5868a2aa20a.tar.bz2
samba-5f2b59622ea1d2ca72577e3c7f60c5868a2aa20a.zip
r18027: Fix some 64-bit warnings
(This used to be commit 54706285f7394e458b6481d0285f67ed225ea34e)
Diffstat (limited to 'source3/lib/talloc.c')
-rw-r--r--source3/lib/talloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/talloc.c b/source3/lib/talloc.c
index b7284e9317..43c95a86e5 100644
--- a/source3/lib/talloc.c
+++ b/source3/lib/talloc.c
@@ -890,7 +890,7 @@ static void talloc_report_depth_FILE_helper(const void *ptr, int depth, int max_
name,
(unsigned long)talloc_total_size(ptr),
(unsigned long)talloc_total_blocks(ptr),
- talloc_reference_count(ptr));
+ (int)talloc_reference_count(ptr));
}
/*