summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/H5Fprivate.h12
1 files 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<sizeof(int64); _i++, _n<<=8) { \
- _n |= *(--p); \
+ for (_i=0; _i<sizeof(int64); _i++, n<<=8) { \
+ n |= *(--p); \
} \
(p) += 8; \
}
# define UINT64DECODE(p, n) { \
/* WE DON'T CHECK FOR OVERFLOW! */ \
- uint64 _n = 0; \
intn _i; \
+ n = 0; \
(p) += 8; \
- for (_i=0; _i<sizeof(uint64); _i++, _n<<=8) { \
- _n |= *(--p); \
+ for (_i=0; _i<sizeof(uint64); _i++, n<<=8) { \
+ n |= *(--p); \
} \
(p) += 8; \
}