Changeset: f3afc35544e6 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=f3afc35544e6 Modified Files: gdk/gdk_hash.c Branch: partitioned-hash Log Message:
Heap.free is a size_t, not a BUN. diffs (12 lines): diff --git a/gdk/gdk_hash.c b/gdk/gdk_hash.c --- a/gdk/gdk_hash.c +++ b/gdk/gdk_hash.c @@ -187,7 +187,7 @@ HASHnew(Heap *hp, int tpe, int pieces, B /* initialize the hash buckets with BUN?_NONE (all versions of * which have all bits set by design) */ memset(h->Hash, 0xFF, pieces * mask * width); - ALGODEBUG fprintf(stderr, "#HASHnew: create hash(tpe %s, pieces %d, chunk " BUNFMT ", cap " BUNFMT ", mask " BUNFMT ", width %d, total " BUNFMT " bytes);\n", ATOMname(tpe), pieces, chunk, cap, mask, width, hp->free); + ALGODEBUG fprintf(stderr, "#HASHnew: create hash(tpe %s, pieces %d, chunk " BUNFMT ", cap " BUNFMT ", mask " BUNFMT ", width %d, total " SZFMT " bytes);\n", ATOMname(tpe), pieces, chunk, cap, mask, width, hp->free); return h; } _______________________________________________ checkin-list mailing list checkin-list@monetdb.org https://www.monetdb.org/mailman/listinfo/checkin-list