From 0e55445d79ef1abea2e62cbe140370bcd9136e6a Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Thu, 5 Feb 1998 12:13:43 -0500 Subject: [svn-r222] Problem: UINT64DECODE and INT64DECODE were not working because it did not assign the decoded value back to n. Solution: Removed temporary variable _n (don't see why it is needed.) Use the variable n directly. Platform tested: IRIX64 -64 --- src/H5Fprivate.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index 19b1380..76ca1f6 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -150,22 +150,22 @@ # define INT64DECODE(p, n) { \ /* WE DON'T CHECK FOR OVERFLOW! */ \ - int64 _n = 0; \ intn _i; \ + n = 0; \ (p) += 8; \ - for (_i=0; _i