From cb199ddbfa52b721779e031160f7cc92498226c9 Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Mon, 30 Oct 2000 00:28:13 +0000 Subject: [PATCH] Changed some comments. committer: mfx 972865693 +0000 --- src/file.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/file.h b/src/file.h index 2b228be0..9f841e35 100644 --- a/src/file.h +++ b/src/file.h @@ -118,7 +118,7 @@ public: off_t getBytesWritten() const { return bytes_written; } - // FIXME - won't work with `--stdout' option + // FIXME - these won't work when using the `--stdout' option virtual void seek(off_t off, int whence) { super::seek(off,whence); @@ -126,7 +126,7 @@ public: virtual void rewrite(const void *buf, int len) { write(buf, len); - bytes_written -= len; + bytes_written -= len; // restore } // util