Skip to content

Commit c77b752

Browse files
committed
Merge branch 'fix-debug-stmt' into 'main'
bugfix: Fix disksize debug statement See merge request bootc-org/podman-bootc-cli!59
2 parents 5db5a84 + c9598c4 commit c77b752

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/bootc/bootc_disk.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ func (p *BootcDisk) bootcInstallImageToDisk(quiet bool) (err error) {
189189
if err := syscall.Ftruncate(int(p.file.Fd()), size); err != nil {
190190
return err
191191
}
192-
logrus.Debugf("Created %s with size %v", p.file.Name(), diskSize)
192+
logrus.Debugf("Created %s with size %v", p.file.Name(), size)
193193
doCleanupDisk := true
194194
defer func() {
195195
if doCleanupDisk {

0 commit comments

Comments
 (0)