[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:
This commit is contained in:
Elena Pourmal 2005-09-18 12:18:02 -05:00
parent c0e83899c3
commit 730a5a9b6d

View File

@ -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
*/