diff options
author | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-07-21 17:57:23 +0000 |
---|---|---|
committer | burnus <burnus@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-07-21 17:57:23 +0000 |
commit | 1cdfcee9ad4c9348a7c9bef1f47916aaa69e38c8 (patch) | |
tree | dbd1fa6510c82db2a0f675666158f5a23da5fe4d /libgfortran | |
parent | 88aa6d3eb18b2ab5304dcebea72ebf38868722d2 (diff) | |
download | gcc-1cdfcee9ad4c9348a7c9bef1f47916aaa69e38c8.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@201107 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran')
-rw-r--r-- | libgfortran/ChangeLog | 4 | ||||
-rw-r--r-- | libgfortran/io/transfer.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index e5f7eb7fdb2..0a035ebb238 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 52b1da6330a..0b1540ce2af 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; } |