From: Jarkko Hietaniemi Date: Mon, 30 Jun 2003 08:41:51 +0000 (+0000) Subject: int is not UV. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7d8e7db38dc74a9a7ddcc48566f03f2b6af6f737;p=p5sagit%2Fp5-mst-13.2.git int is not UV. p4raw-id: //depot/perl@19890 --- diff --git a/perl.c b/perl.c index ef3e205..a06c162 100644 --- a/perl.c +++ b/perl.c @@ -943,8 +943,8 @@ setuid perl scripts securely.\n"); * --jhi */ char *s; int i; - int mask = - ~(PTRSIZE == 4 ? 3 : PTRSIZE == 8 ? 7 : PTRSIZE == 16 ? 15 : 0); + UV mask = + ~(UV)(PTRSIZE == 4 ? 3 : PTRSIZE == 8 ? 7 : PTRSIZE == 16 ? 15 : 0); /* See if all the arguments are contiguous in memory. * Note that 'contiguous' is a loose term because some