diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-01-14 20:36:32 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-01-14 20:36:32 (GMT) |
commit | 35985b6dbaad14e40146c0d1b04382a4f048e4d0 (patch) | |
tree | 16d155c78b116b32a3ffa49ff439e1af72fda0ce /test | |
parent | 105bee4ead610d183af62e08b4f7c219ba0ea6a9 (diff) | |
download | hdf5-35985b6dbaad14e40146c0d1b04382a4f048e4d0.zip hdf5-35985b6dbaad14e40146c0d1b04382a4f048e4d0.tar.gz hdf5-35985b6dbaad14e40146c0d1b04382a4f048e4d0.tar.bz2 |
[svn-r9827] Purpose: Minor correction
Description: There was a #ifdef statement with logical AND in it.
Solution: Change it to #if statement.
Platforms tested: sleipnir and eirene. Simple change
Diffstat (limited to 'test')
-rw-r--r-- | test/dtypes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dtypes.c b/test/dtypes.c index 4c46001..0d7a000 100644 --- a/test/dtypes.c +++ b/test/dtypes.c @@ -6396,7 +6396,7 @@ run_int_float_conv(const char *name) #endif #if H5_SIZEOF_LONG_LONG!=H5_SIZEOF_LONG nerrors += test_conv_int_float(name, H5T_NATIVE_LLONG, H5T_NATIVE_LDOUBLE); -#ifdef H5_ULLONG_TO_FP_CAST_WORKS && H5_ULLONG_TO_LDOUBLE_PRECISION_WORKS +#if H5_ULLONG_TO_FP_CAST_WORKS && H5_ULLONG_TO_LDOUBLE_PRECISION_WORKS nerrors += test_conv_int_float(name, H5T_NATIVE_ULLONG, H5T_NATIVE_LDOUBLE); #else /* H5_ULLONG_TO_FP_CAST_WORKS */ { |