Skip to content

Commit 1b440ff

Browse files
committed
Fix error message in sysbox-runc.
Signed-off-by: Cesar Talledo <[email protected]>
1 parent fe9552d commit 1b440ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcontainer/rootfs_init_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ func (l *linuxRootfsInit) Init() error {
322322

323323
// The overlayfs upper layer can't be ID-mapped, so it needs to be chowned.
324324
if err := idShiftUtils.ShiftIdsWithChown(ovfsUpperLayer, int32(uid), int32(gid)); err != nil {
325-
return newSystemErrorWithCausef(err, "chown overlayfs upper layet at %s")
325+
return newSystemErrorWithCausef(err, "chown overlayfs upper layet at %s", ovfsUpperLayer)
326326
}
327327

328328
// Recreate the rootfs overlayfs mount (using the ID-mapped lower layers)

0 commit comments

Comments
 (0)