summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2005-09-18 17:18:02 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2005-09-18 17:18:02 (GMT)
commit730a5a9b6d80d969cd7d44a181217458cba6fb93 (patch)
treec1726123f0a13e39011dc04f0a60cd94fec12691 /fortran
parentc0e83899c3d08404dca016a8108792bf938e40a0 (diff)
downloadhdf5-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.c2
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
*/