diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-08-04 01:02:53 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-08-04 01:02:53 (GMT) |
commit | 53650637a51a1b6fd341a8eb276558d5ae33be36 (patch) | |
tree | ff7baa6237e0f922756bec2055f199d828258698 | |
parent | 77009f6b31586f5b7216030fb81d7c286b348caf (diff) | |
download | hdf5-53650637a51a1b6fd341a8eb276558d5ae33be36.zip hdf5-53650637a51a1b6fd341a8eb276558d5ae33be36.tar.gz hdf5-53650637a51a1b6fd341a8eb276558d5ae33be36.tar.bz2 |
[svn-r11194] Purpose:
fixed typo for uint_fast16_t verification.
Tested in heping.
-rw-r--r-- | test/tconfig.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/tconfig.c b/test/tconfig.c index 5f1c246..cce4fb3 100644 --- a/test/tconfig.c +++ b/test/tconfig.c @@ -120,7 +120,9 @@ test_config_ctypes(void) vrfy_cint_type(long, unsigned long, H5_SIZEOF_LONG); vrfy_ctype(float, H5_SIZEOF_FLOAT); vrfy_ctype(double, H5_SIZEOF_DOUBLE); +#if H5_SIZEOF_LONG_DOUBLE >0 vrfy_ctype(long double, H5_SIZEOF_LONG_DOUBLE); +#endif /* standard C99 basic types */ #if H5_SIZEOF_LONG_LONG > 0 @@ -154,7 +156,7 @@ test_config_ctypes(void) #endif #if H5_SIZEOF_INT_FAST16_T > 0 - vrfy_cint_type(int_fast16_t, int_fast16_t, H5_SIZEOF_INT_FAST16_T); + vrfy_cint_type(int_fast16_t, uint_fast16_t, H5_SIZEOF_INT_FAST16_T); #endif #if H5_SIZEOF_INT_FAST32_T > 0 |