[svn:parrot] r38284 - trunk/config/auto

rblasch at svn.parrot.org rblasch at svn.parrot.org
Thu Apr 23 18:13:16 UTC 2009


Author: rblasch
Date: Thu Apr 23 18:13:15 2009
New Revision: 38284
URL: https://trac.parrot.org/parrot/changeset/38284

Log:
[config] Fixed transposed "long long int" ivmin/ivmax.

Modified:
   trunk/config/auto/format.pm

Modified: trunk/config/auto/format.pm
==============================================================================
--- trunk/config/auto/format.pm	Thu Apr 23 16:30:00 2009	(r38283)
+++ trunk/config/auto/format.pm	Thu Apr 23 18:13:15 2009	(r38284)
@@ -82,8 +82,8 @@
     elsif ( ( $iv eq "long long" ) || ( $iv eq "long long int" ) ) {
         # The assumption is that a compiler that have the long long type
         # also provides his limit macros.
-        $ivmax = 'LLONG_MIN';
-        $ivmin = 'LLONG_MAX';
+        $ivmin = 'LLONG_MIN';
+        $ivmax = 'LLONG_MAX';
     }
     else {
         die qq{Configure.pl:  Can't find limits for type '$iv'\n};


More information about the parrot-commits mailing list