Commit f55dea6b authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

Implement DevNullFs.Truncate

parent b82db8eb
......@@ -58,6 +58,10 @@ func (me *DevNullFile) Fsync(*FsyncIn) (code Status) {
return OK
}
func (me *DevNullFile) Truncate(size uint64) (code Status) {
return OK
}
////////////////
// LoopbackFile delegates all operations back to an underlying os.File.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment