diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2005-05-02 16:01:15 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2005-05-02 16:01:15 (GMT) |
commit | aab3884c94c8f4822f15c050ecb4dd1914164bec (patch) | |
tree | df328ea76a96fd66b3d86ae424e8e8d873b3b4c7 /src | |
parent | 117c3740b5011903c918043fcb78451546f779e9 (diff) | |
download | hdf5-aab3884c94c8f4822f15c050ecb4dd1914164bec.zip hdf5-aab3884c94c8f4822f15c050ecb4dd1914164bec.tar.gz hdf5-aab3884c94c8f4822f15c050ecb4dd1914164bec.tar.bz2 |
[svn-r10707] Purpose:
bug fix, the wrong setting at H5public.h causes library failed to be compiled on windows.
Description:
"long long" needs to be changed to long_long since "long long" can not be recongized on windows.
Solution:
Platforms tested:
MSVS 6.0 on windows XP
Linux 2.4 on heping
Misc. update:
Diffstat (limited to 'src')
-rw-r--r-- | src/H5public.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5public.h b/src/H5public.h index 99437d7..d4ccce1 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -185,7 +185,7 @@ typedef ssize_t hssize_t; # endif /* H5_HAVE_PARALLEL */ #elif H5_SIZEOF_LONG_LONG>=8 typedef unsigned long_long haddr_t; -# define HADDR_UNDEF ((haddr_t)(long long)(-1)) +# define HADDR_UNDEF ((haddr_t)(long_long)(-1)) # define H5_SIZEOF_HADDR_T H5_SIZEOF_LONG_LONG # ifdef H5_HAVE_PARALLEL # define HADDR_AS_MPI_TYPE MPI_LONG_LONG_INT |