diff options
author | Jerry DeLisle <jvdelisle@gcc.gnu.org> | 2010-03-22 02:39:02 +0000 |
---|---|---|
committer | Jerry DeLisle <jvdelisle@gcc.gnu.org> | 2010-03-22 02:39:02 +0000 |
commit | 260f179b8d54f2343fe26a484fb52e906210cae6 (patch) | |
tree | 21cbdb524084cd7541ea2bf5e9e9e8a602e58dfe /libgfortran/io | |
parent | 19c1be3917d8295435bf605e2dcc260e93095fe0 (diff) | |
download | gcc-260f179b8d54f2343fe26a484fb52e906210cae6.zip gcc-260f179b8d54f2343fe26a484fb52e906210cae6.tar.gz gcc-260f179b8d54f2343fe26a484fb52e906210cae6.tar.bz2 |
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
Diffstat (limited to 'libgfortran/io')
-rw-r--r-- | libgfortran/io/io.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/io/io.h b/libgfortran/io/io.h index aa79edd..a73d5d1 100644 --- a/libgfortran/io/io.h +++ b/libgfortran/io/io.h @@ -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; |