summaryrefslogtreecommitdiff
path: root/lib/ccan/tally
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-08-10 19:42:54 +0200
committerVolker Lendecke <vl@samba.org>2011-08-10 19:56:09 +0200
commit54282e9f4eda083e70c7e56dda2bf425209add6d (patch)
tree923fff40bdb73edb48d4112dd393e8acce6471c9 /lib/ccan/tally
parent38fb4df6944ee660044788d5a8cb6764d8a2caef (diff)
downloadsamba-54282e9f4eda083e70c7e56dda2bf425209add6d.tar.gz
samba-54282e9f4eda083e70c7e56dda2bf425209add6d.tar.bz2
samba-54282e9f4eda083e70c7e56dda2bf425209add6d.zip
Fix a c++ warning
Diffstat (limited to 'lib/ccan/tally')
-rw-r--r--lib/ccan/tally/tally.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ccan/tally/tally.c b/lib/ccan/tally/tally.c
index 0d49319608..d3d320eb1b 100644
--- a/lib/ccan/tally/tally.c
+++ b/lib/ccan/tally/tally.c
@@ -31,7 +31,8 @@ struct tally *tally_new(unsigned buckets)
/* Overly cautious check for overflow. */
if (sizeof(*tally) * buckets / sizeof(*tally) != buckets)
return NULL;
- tally = malloc(sizeof(*tally) + sizeof(tally->counts[0])*(buckets-1));
+ tally = (struct tally *)malloc(
+ sizeof(*tally) + sizeof(tally->counts[0])*(buckets-1));
if (tally) {
tally->max = ((size_t)1 << (SIZET_BITS - 1));
tally->min = ~tally->max;