diff options
author | Nicolas Lacasse <nlacasse@google.com> | 2019-03-27 11:07:41 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-03-27 11:08:50 -0700 |
commit | 645af7cdd8a183ce80218b1ad275001084c133ce (patch) | |
tree | 26fe08e76fdd48f56730f8e09e2d80a4b3b2c784 /pkg/sentry/fs/dev/full.go | |
parent | 66181f3de9926168bf6410e9cff9e05b6ed8ace3 (diff) |
Dev device methods should take pointer receiver.
PiperOrigin-RevId: 240600504
Change-Id: I7dd5f27c8da31f24b68b48acdf8f1c19dbd0c32d
Diffstat (limited to 'pkg/sentry/fs/dev/full.go')
-rw-r--r-- | pkg/sentry/fs/dev/full.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/fs/dev/full.go b/pkg/sentry/fs/dev/full.go index cbdd40161..0cb513004 100644 --- a/pkg/sentry/fs/dev/full.go +++ b/pkg/sentry/fs/dev/full.go @@ -73,6 +73,6 @@ type fullFileOperations struct { var _ fs.FileOperations = (*fullFileOperations)(nil) // Write implements FileOperations.Write. -func (fullFileOperations) Write(context.Context, *fs.File, usermem.IOSequence, int64) (int64, error) { +func (*fullFileOperations) Write(context.Context, *fs.File, usermem.IOSequence, int64) (int64, error) { return 0, syserror.ENOSPC } |