diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2005-06-28 19:42:51 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2005-06-28 19:42:51 (GMT) |
commit | 1e1e2578f66a7346aef55b33f44c2d27853c7da7 (patch) | |
tree | 5ed8b13997e3d41275dda3de2307552b2b685670 /fortran/src | |
parent | ac2e0d548eaab1cb3c3875ed4cd842de8aed6b41 (diff) | |
download | hdf5-1e1e2578f66a7346aef55b33f44c2d27853c7da7.zip hdf5-1e1e2578f66a7346aef55b33f44c2d27853c7da7.tar.gz hdf5-1e1e2578f66a7346aef55b33f44c2d27853c7da7.tar.bz2 |
[svn-r10997] Purpose: Small bug fix
Description: "long long" type caused compilation problems on Windows
Solution: Use long_long definition
Platforms tested: heping, Windows will follow
Misc. update:
Diffstat (limited to 'fortran/src')
-rw-r--r-- | fortran/src/H5_f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/src/H5_f.c b/fortran/src/H5_f.c index 8d88667..8b244f0 100644 --- a/fortran/src/H5_f.c +++ b/fortran/src/H5_f.c @@ -55,7 +55,7 @@ nh5init_types_c( hid_t_f * types, hid_t_f * floatingtypes, hid_t_f * integertype if ((types[0] = (hid_t_f)H5Tcopy(H5T_NATIVE_LONG)) < 0) return ret_value; } /*end if */ else - if (sizeof(int_f) == sizeof(long long)) { + if (sizeof(int_f) == sizeof(long_long)) { if ((types[0] = (hid_t_f)H5Tcopy(H5T_NATIVE_LLONG)) < 0) return ret_value; } /*end else */ |