diff options
Diffstat (limited to 'pkg/spec/config_unsupported.go')
-rw-r--r-- | pkg/spec/config_unsupported.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/spec/config_unsupported.go b/pkg/spec/config_unsupported.go index 310c2e204..c2a58696d 100644 --- a/pkg/spec/config_unsupported.go +++ b/pkg/spec/config_unsupported.go @@ -15,11 +15,11 @@ func addDevice(g *generate.Generator, device string) error { return errors.New("function not implemented") } -func (c *CreateConfig) AddPrivilegedDevices(g *generate.Generator) error { +func (c *CreateConfig) addPrivilegedDevices(g *generate.Generator) error { return errors.New("function not implemented") } -func (c *CreateConfig) CreateBlockIO() (*spec.LinuxBlockIO, error) { +func (c *CreateConfig) createBlockIO() (*spec.LinuxBlockIO, error) { return nil, errors.New("function not implemented") } |