diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2005-09-18 17:18:02 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2005-09-18 17:18:02 (GMT) |
commit | 730a5a9b6d80d969cd7d44a181217458cba6fb93 (patch) | |
tree | c1726123f0a13e39011dc04f0a60cd94fec12691 /fortran | |
parent | c0e83899c3d08404dca016a8108792bf938e40a0 (diff) | |
download | hdf5-730a5a9b6d80d969cd7d44a181217458cba6fb93.zip hdf5-730a5a9b6d80d969cd7d44a181217458cba6fb93.tar.gz hdf5-730a5a9b6d80d969cd7d44a181217458cba6fb93.tar.bz2 |
[svn-r11432]
Purpose: Typo fix
Description: Declaration of long double variable was after executable
statement. Many compilers choked ;-(
Solution: Declare variable before the first executable statement
Platforms tested: shanti (compilation only), copper (tests passed)
Misc. update:
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/src/H5Pf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/src/H5Pf.c b/fortran/src/H5Pf.c index b89ca12..8671a0e 100644 --- a/fortran/src/H5Pf.c +++ b/fortran/src/H5Pf.c @@ -2897,9 +2897,9 @@ nh5pset_fapl_multi_c ( hid_t_f *prp_id , int_f *memb_map, hid_t_f *memb_fapl, _f char *tmp, *tmp_p, *tmp_pp; int i; int c_lenmax; + long double tmp_max_addr; c_lenmax = (int)*lenmax; relax = (hbool_t)*flag; - long double tmp_max_addr; /* * Check that we got correct values from Fortran for memb_addr array */ |