From 730a5a9b6d80d969cd7d44a181217458cba6fb93 Mon Sep 17 00:00:00 2001 From: Elena Pourmal Date: Sun, 18 Sep 2005 12:18:02 -0500 Subject: [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: --- fortran/src/H5Pf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- cgit v0.12