From 58d79169834c8440e2bdac4e457edca976f8e922 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Mon, 11 Nov 2002 13:36:35 -0500 Subject: [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. --- src/H5detect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12