diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-11-03 23:31:47 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-11-03 23:31:47 +0000 |
commit | f6a54ee4845a380062b945373ec597afffb27282 (patch) | |
tree | b17420d083e6495b542daa49b1f854c7c907dc40 /pkg/sentry/kernel/vdso.go | |
parent | 25da68ce0722f5dc2c714a62bc047db4d40efd94 (diff) | |
parent | 1cfa8d58f6ffd7202fe445c2986f0366022d46f9 (diff) |
Merge release-20201027.0-63-g1cfa8d58f (automated)
Diffstat (limited to 'pkg/sentry/kernel/vdso.go')
-rw-r--r-- | pkg/sentry/kernel/vdso.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/kernel/vdso.go b/pkg/sentry/kernel/vdso.go index 9bc452e67..9e5c2d26f 100644 --- a/pkg/sentry/kernel/vdso.go +++ b/pkg/sentry/kernel/vdso.go @@ -115,7 +115,7 @@ func (v *VDSOParamPage) incrementSeq(paramPage safemem.Block) error { } if old != v.seq { - return fmt.Errorf("unexpected VDSOParamPage seq value: got %d expected %d. Application may hang or get incorrect time from the VDSO.", old, v.seq) + return fmt.Errorf("unexpected VDSOParamPage seq value: got %d expected %d; application may hang or get incorrect time from the VDSO", old, v.seq) } v.seq = next |