1
0
mirror of https://github.com/upx/upx synced 2025-09-28 19:06:07 +08:00

Changed some comments.

committer: mfx <mfx> 972865693 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2000-10-30 00:28:13 +00:00
parent 2bccbeb6d1
commit cb199ddbfa

View File

@ -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