aboutsummaryrefslogtreecommitdiff
path: root/libgfortran
diff options
context:
space:
mode:
authorOndřej Bílka <neleai@seznam.cz>2013-07-21 19:57:23 +0200
committerTobias Burnus <burnus@gcc.gnu.org>2013-07-21 19:57:23 +0200
commit9b110be230335f0b0bc3cf676b42f0280225a784 (patch)
treedbd1fa6510c82db2a0f675666158f5a23da5fe4d /libgfortran
parentc65cb8d1f07920e911d13e551476e28d204e8daa (diff)
downloadgcc-9b110be230335f0b0bc3cf676b42f0280225a784.zip
gcc-9b110be230335f0b0bc3cf676b42f0280225a784.tar.gz
gcc-9b110be230335f0b0bc3cf676b42f0280225a784.tar.bz2
trans-decl.c: Fix comment typos.
2013-07-21 Ondřej Bílka <neleai@seznam.cz> * trans-decl.c: Fix comment typos. * trans-expr.c: Ditto. 2013-07-21 Ondřej Bílka <neleai@seznam.cz> * io/transfer.c: Fix comment typos. From-SVN: r201107
Diffstat (limited to 'libgfortran')
-rw-r--r--libgfortran/ChangeLog4
-rw-r--r--libgfortran/io/transfer.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index e5f7eb7..0a035eb 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-21 Ondřej Bílka <neleai@seznam.cz>
+
+ * io/transfer.c: Fix comment typos.
+
2013-07-21 Tobias Burnus <burnus@net-b.de>
PR fortran/35862
diff --git a/libgfortran/io/transfer.c b/libgfortran/io/transfer.c
index 52b1da6..0b1540c 100644
--- a/libgfortran/io/transfer.c
+++ b/libgfortran/io/transfer.c
@@ -233,7 +233,7 @@ read_sf_internal (st_parameter_dt *dtp, int * length)
{
*length = 0;
/* Just return something that isn't a NULL pointer, otherwise the
- caller thinks an error occured. */
+ caller thinks an error occurred. */
return (char*) empty_string;
}
@@ -292,7 +292,7 @@ read_sf (st_parameter_dt *dtp, int * length)
{
*length = 0;
/* Just return something that isn't a NULL pointer, otherwise the
- caller thinks an error occured. */
+ caller thinks an error occurred. */
return (char*) empty_string;
}
@@ -512,7 +512,7 @@ read_block_form4 (st_parameter_dt *dtp, int * nbytes)
{
*nbytes = 0;
/* Just return something that isn't a NULL pointer, otherwise the
- caller thinks an error occured. */
+ caller thinks an error occurred. */
return empty_string;
}