aboutsummaryrefslogtreecommitdiff
path: root/libgfortran
diff options
context:
space:
mode:
authorJerry DeLisle <jvdelisle@gcc.gnu.org>2010-03-22 02:39:02 +0000
committerJerry DeLisle <jvdelisle@gcc.gnu.org>2010-03-22 02:39:02 +0000
commit260f179b8d54f2343fe26a484fb52e906210cae6 (patch)
tree21cbdb524084cd7541ea2bf5e9e9e8a602e58dfe /libgfortran
parent19c1be3917d8295435bf605e2dcc260e93095fe0 (diff)
downloadgcc-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')
-rw-r--r--libgfortran/ChangeLog5
-rw-r--r--libgfortran/io/io.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index 7a80556..d4d6b9f 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -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
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;