diff options
author | reichelt <reichelt@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-24 21:47:26 +0000 |
---|---|---|
committer | reichelt <reichelt@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-24 21:47:26 +0000 |
commit | 822e391f5e0b9d59c77dce31ac9eafc807b4e096 (patch) | |
tree | 42ae786e6a9fe0fcb904dc11ee9e36ca7e2eb8a5 /gcc/ggc-page.c | |
parent | 349393288602ef00c04a3cc9e7f503b5692ba7a9 (diff) | |
download | gcc-822e391f5e0b9d59c77dce31ac9eafc807b4e096.tar.gz |
* ChangeLog.5: Fix log message typo(s).
* ChangeLog.7: Likewise.
* ChangeLog.tree-ssa: Likewise.
* cfgexpand.c: Fix comment typo(s).
* conflict.c: Likewise.
* defaults.h: Likewise.
* dwarf2out.c: Likewise.
* gcse.c: Likewise.
* ggc-page.c: Likewise.
* tree-eh.c: Likewise.
* tree-ssa-dom.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95516 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ggc-page.c')
-rw-r--r-- | gcc/ggc-page.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/ggc-page.c b/gcc/ggc-page.c index 131731f1e7e..dd879fa55cb 100644 --- a/gcc/ggc-page.c +++ b/gcc/ggc-page.c @@ -2218,8 +2218,7 @@ ggc_pch_write_object (struct ggc_pch_data *d ATTRIBUTE_UNUSED, /* To speed small writes, we use a nulled-out array that's larger than most padding requests as the source for our null bytes. This permits us to do the padding with fwrite() rather than fseek(), and - limits the chance the the OS may try to flush any outstanding - writes. */ + limits the chance the OS may try to flush any outstanding writes. */ if (padding <= sizeof(emptyBytes)) { if (fwrite (emptyBytes, 1, padding, f) != padding) |