diff options
Diffstat (limited to 'libpod/container_internal.go')
-rw-r--r-- | libpod/container_internal.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_internal.go b/libpod/container_internal.go index 9896d0ed7..258ee6ffd 100644 --- a/libpod/container_internal.go +++ b/libpod/container_internal.go @@ -83,7 +83,7 @@ func (c *Container) rootFsSize() (int64, error) { } } // Get the size of the last layer. Has to be outside of the loop - // because the parent of the last layer is "", andlstore.Get("") + // because the parent of the last layer is "", and lstore.Get("") // will return an error. layerSize, err := c.runtime.store.DiffSize(layer.Parent, layer.ID) return size + layerSize, err |