From eb160463266f58ba83ae9bb9ae8bbdc8f0c3027b Mon Sep 17 00:00:00 2001 From: Gurusamy Sarathy Date: Sun, 21 Apr 2002 19:53:08 +0000 Subject: fixes for all the warnings reported by Visual C (most of this change is from change#12026) p4raw-link: @12026 on //depot/maint-5.6/perl: ff42b73b40f5a895aef4bed81c794f468e0609bc p4raw-id: //depot/perl@16048 --- av.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'av.c') diff --git a/av.c b/av.c index 4566cb2928..5d59642178 100644 --- a/av.c +++ b/av.c @@ -119,7 +119,7 @@ Perl_av_extend(pTHX_ AV *av, I32 key) bytes = (newmax + 1) * sizeof(SV*); #define MALLOC_OVERHEAD 16 itmp = MALLOC_OVERHEAD; - while (itmp - MALLOC_OVERHEAD < bytes) + while ((MEM_SIZE)(itmp - MALLOC_OVERHEAD) < bytes) itmp += itmp; itmp -= MALLOC_OVERHEAD; itmp /= sizeof(SV*); -- cgit v1.2.1