summaryrefslogtreecommitdiff
path: root/cmd/btrfs-rec/inspect_scandevices.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/btrfs-rec/inspect_scandevices.go')
-rw-r--r--cmd/btrfs-rec/inspect_scandevices.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/cmd/btrfs-rec/inspect_scandevices.go b/cmd/btrfs-rec/inspect_scandevices.go
index 37bafe4..5c8b2b0 100644
--- a/cmd/btrfs-rec/inspect_scandevices.go
+++ b/cmd/btrfs-rec/inspect_scandevices.go
@@ -33,7 +33,12 @@ func init() {
}
dlog.Info(ctx, "Writing scan results to stdout...")
- return writeScanResults(os.Stdout, results)
+ if err := writeScanResults(os.Stdout, results); err != nil {
+ return err
+ }
+ dlog.Info(ctx, "... done writing")
+
+ return nil
},
})
}