summaryrefslogtreecommitdiffstats
path: root/src/H5detect.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-11-11 18:36:35 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-11-11 18:36:35 (GMT)
commit58d79169834c8440e2bdac4e457edca976f8e922 (patch)
tree592a03c8586e775f210310ce7ed6c44157cccca8 /src/H5detect.c
parent59459d5eb8abd48f720749acde6925b588b469b9 (diff)
downloadhdf5-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.
Diffstat (limited to 'src/H5detect.c')
-rw-r--r--src/H5detect.c2
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