From dd2710a18cfd609d3bec8cdea7f5ef2e4cbaae10 Mon Sep 17 00:00:00 2001 From: Vadim Konovalov Date: Mon, 21 Jan 2002 12:48:40 +0300 Subject: RE: BCC for Win32 is unhappy @14331 From: "Konovalov, Vadim" Message-ID: <80C37C8B4041FB4F9135D70A0AAD71B30F00E5@ru0028exch01.spb.lucent.com> (using IV instead of int) p4raw-id: //depot/perl@14368 --- hv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hv.h') diff --git a/hv.h b/hv.h index 260125949a..d679e30a8b 100644 --- a/hv.h +++ b/hv.h @@ -144,8 +144,8 @@ C. /* The number of placeholders in the enumerated-keys hash */ #define XHvPLACEHOLDERS(xhv) ((xhv)->xhv_placeholders) -/* the number of keys that exist() (i.e. excluding placeholers) */ -#define XHvUSEDKEYS(xhv) (XHvTOTALKEYS(xhv) - XHvPLACEHOLDERS(xhv)) +/* the number of keys that exist() (i.e. excluding placeholders) */ +#define XHvUSEDKEYS(xhv) (XHvTOTALKEYS(xhv) - (IV)XHvPLACEHOLDERS(xhv)) /* * HvKEYS gets the number of keys that actually exist(), and is provided -- cgit v1.2.1