diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2006-09-25 10:35:48 +0300 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-09-25 07:12:36 +0000 |
commit | 6a1e1159a8a738e1607626a2dc2479f546ab4e49 (patch) | |
tree | 9abacff9c2883b0cbaf42758dac8feabd0d1691a /reentr.pl | |
parent | 5bc10b2cfeb5ef2af5d606c83b73143a5ad28a8e (diff) | |
download | perl-6a1e1159a8a738e1607626a2dc2479f546ab4e49.tar.gz |
Re: Change 28877: [PATCH] deal with some gcc warnings
Message-ID: <45175CA4.3020900@iki.fi>
remove casts that were causing failure on FreeBSD -Duse64bitint, and
some other cleanups.
p4raw-id: //depot/perl@28886
Diffstat (limited to 'reentr.pl')
-rw-r--r-- | reentr.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -547,7 +547,7 @@ EOF push @size, <<EOF; # if defined(HAS_SYSCONF) && defined($sc) && !defined(__GLIBC__) PL_reentrant_buffer->$sz = sysconf($sc); - if ((IV)PL_reentrant_buffer->$sz == (IV)-1) + if (PL_reentrant_buffer->$sz == -1) PL_reentrant_buffer->$sz = REENTRANTUSUALSIZE; # else # if defined(__osf__) && defined(__alpha) && defined(SIABUFSIZ) |