re PR fortran/43409 (I/O: INQUIRE for SIZE does not work.)

2010-03-21  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR fortran/43409
	* io/io.h: Fix type of size in st_parameter_inquire structure.

From-SVN: r157618
This commit is contained in:
Jerry DeLisle 2010-03-22 02:39:02 +00:00
parent 19c1be3917
commit 260f179b8d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-03-21 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/43409
* io/io.h: Fix type of size in st_parameter_inquire structure.
2010-03-20 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/43409

View File

@ -331,7 +331,7 @@ typedef struct
CHARACTER2 (round);
CHARACTER1 (sign);
GFC_INTEGER_4 *pending;
GFC_INTEGER_4 *size;
GFC_IO_INT *size;
GFC_INTEGER_4 *id;
}
st_parameter_inquire;