diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2013-07-21 19:57:23 +0200 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2013-07-21 19:57:23 +0200 |
commit | 9b110be230335f0b0bc3cf676b42f0280225a784 (patch) | |
tree | dbd1fa6510c82db2a0f675666158f5a23da5fe4d /libgfortran/io | |
parent | c65cb8d1f07920e911d13e551476e28d204e8daa (diff) | |
download | gcc-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/io')
-rw-r--r-- | libgfortran/io/transfer.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |