diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-11-08 14:21:49 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-11-08 14:21:49 (GMT) |
commit | dd969f1eadfd2cd500f3f44415b85cfea7216794 (patch) | |
tree | 587f50535901e55ac89f66e916f74826c26e75a3 /src/H5private.h | |
parent | f809c2d3529f9241b39f90c69c5d2c1b24cbd0b9 (diff) | |
download | hdf5-dd969f1eadfd2cd500f3f44415b85cfea7216794.zip hdf5-dd969f1eadfd2cd500f3f44415b85cfea7216794.tar.gz hdf5-dd969f1eadfd2cd500f3f44415b85cfea7216794.tar.bz2 |
[svn-r7827] Purpose:
Bug fix
Description:
Make --disable-hsizet work properly again by fixing a couple of tests and
correcting the definition of SSIZET_MAX.
Platforms tested:
FreeBSD 4.9 (sleipnir)
h5committest not used, as it doesn't test this configuration.
Diffstat (limited to 'src/H5private.h')
-rw-r--r-- | src/H5private.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5private.h b/src/H5private.h index 96a4703..672bba6 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -437,15 +437,15 @@ # define ULLONG_MAX ((unsigned long_long)((long_long)(-1))) #endif #ifndef SIZET_MAX -# define SIZET_MAX ((hsize_t)(size_t)(ssize_t)(-1)) -# define SSIZET_MAX ((hsize_t)(ssize_t)((size_t)1<<(8*sizeof(ssize_t)-1))) +# define SIZET_MAX ((size_t)(ssize_t)(-1)) +# define SSIZET_MAX ((ssize_t)(((size_t)1<<(8*sizeof(ssize_t)-1))-1)) #endif #ifdef H5_HAVE_LARGE_HSIZET -#define HSIZET_MAX ULLONG_MAX -#define HSSIZET_MAX LLONG_MAX +#define HSIZET_MAX ((hsize_t)ULLONG_MAX) +#define HSSIZET_MAX ((hssize_t)LLONG_MAX) #else /* H5_HAVE_LARGE_HSIZET */ -#define HSIZET_MAX SIZET_MAX -#define HSSIZET_MAX SSIZET_MAX +#define HSIZET_MAX ((hsize_t)SIZET_MAX) +#define HSSIZET_MAX ((hssize_t)SSIZET_MAX) #endif /* H5_HAVE_LARGE_HSIZET */ #define HSSIZET_MIN (~(HSSIZET_MAX)) |