summaryrefslogtreecommitdiffhomepage
path: root/runsc
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2018-10-08 17:43:31 -0700
committerShentubot <shentubot@google.com>2018-10-08 17:44:39 -0700
commitb8048f75daa2ec13059162cb421236f99e5e4a0e (patch)
tree16065ecfa79d1be0b9d1fc1db67fe36a17706b55 /runsc
parent569c2b06c47d269d961405fa652d45e51860d005 (diff)
Uncapitalize error
PiperOrigin-RevId: 216281263 Change-Id: Ie0c189e7f5934b77c6302336723bc1181fd2866c
Diffstat (limited to 'runsc')
-rw-r--r--runsc/boot/loader.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/boot/loader.go b/runsc/boot/loader.go
index 726482bb2..c419b366f 100644
--- a/runsc/boot/loader.go
+++ b/runsc/boot/loader.go
@@ -142,7 +142,7 @@ func init() {
// New also handles setting up a kernel for restoring a container.
func New(id string, spec *specs.Spec, conf *Config, controllerFD, deviceFD int, goferFDs []int, stdioFDs []int, console bool) (*Loader, error) {
if err := usage.Init(); err != nil {
- return nil, fmt.Errorf("Error setting up memory usage: %v", err)
+ return nil, fmt.Errorf("error setting up memory usage: %v", err)
}
// Create kernel and platform.
p, err := createPlatform(conf, deviceFD)