diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2005-09-07 23:19:38 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2005-09-07 23:19:38 (GMT) |
commit | a0c61b514bcae172789e782c62547080da045b2a (patch) | |
tree | a5726c8dd7c186ffb569d0edffec6f22b2a523a1 | |
parent | 64fdc49ab940e76e921f4ce7ccddc577fb24bea6 (diff) | |
download | hdf5-a0c61b514bcae172789e782c62547080da045b2a.zip hdf5-a0c61b514bcae172789e782c62547080da045b2a.tar.gz hdf5-a0c61b514bcae172789e782c62547080da045b2a.tar.bz2 |
[svn-r11370] Purpose: Typo fix
Description: Fixed a typo introduced by my previous check in
Solution:
Platforms tested: heping
Misc. update:
-rw-r--r-- | fortran/src/H5match_types.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/src/H5match_types.c b/fortran/src/H5match_types.c index 941ad67..4900aac 100644 --- a/fortran/src/H5match_types.c +++ b/fortran/src/H5match_types.c @@ -243,7 +243,7 @@ int main() writeToFiles("HID_T", "hid_t_f", 2); #elif defined H5_FORTRAN_HAS_INTEGER_1 && H5_SIZEOF_HID_T >= 1 writeToFiles("HID_T", "hid_t_f", 1); -#if defined H5_FORTRAN_HAS_INTEGER_8 && H5_SIZEOF_HID_T >= 4 +#elif defined H5_FORTRAN_HAS_INTEGER_8 && H5_SIZEOF_HID_T >= 4 writeToFiles("HID_T", "hid_t_f", 8); #else /* Error: couldn't find a size for hid_t */ |