diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-11-11 18:36:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-11-11 18:36:35 (GMT) |
commit | 58d79169834c8440e2bdac4e457edca976f8e922 (patch) | |
tree | 592a03c8586e775f210310ce7ed6c44157cccca8 | |
parent | 59459d5eb8abd48f720749acde6925b588b469b9 (diff) | |
download | hdf5-58d79169834c8440e2bdac4e457edca976f8e922.zip hdf5-58d79169834c8440e2bdac4e457edca976f8e922.tar.gz hdf5-58d79169834c8440e2bdac4e457edca976f8e922.tar.bz2 |
[svn-r6069] Purpose:
Fix Windows portability bug
Description:
"long long" is not defined on Windows.
Solution:
Use our internal definition of "long_long" instead.
Platforms tested:
eyeballed.
-rw-r--r-- | src/H5detect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5detect.c b/src/H5detect.c index 65118e3..78ac69c 100644 --- a/src/H5detect.c +++ b/src/H5detect.c @@ -1130,7 +1130,7 @@ main(void) #if H5_SIZEOF_LONG_LONG>0 DETECT_I(long_long, LLONG, d[nd]); - COMP_ALIGNMENT(long long, d[nd].comp_align); nd++; + COMP_ALIGNMENT(long_long, d[nd].comp_align); nd++; DETECT_I(unsigned long_long, ULLONG, d[nd]); nd++; #else |