summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-03-10 19:31:50 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2023-04-04 14:08:38 -0600
commit4264394fae41b08026a187b7da9e9787927863ab (patch)
treedd3c70994d6a21e120ef0ec7030b15fdb74b28e7
parentb0f290078d531d2dcb5d34e809b0711ce9b6491e (diff)
cmd/btrfs-rec: main.go: Don't let lines get too long
-rw-r--r--cmd/btrfs-rec/main.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/cmd/btrfs-rec/main.go b/cmd/btrfs-rec/main.go
index d221c3d..e6305da 100644
--- a/cmd/btrfs-rec/main.go
+++ b/cmd/btrfs-rec/main.go
@@ -86,10 +86,12 @@ func main() {
globalFlags.logLevel.Level = dlog.LogLevelInfo
argparser.PersistentFlags().Var(&globalFlags.logLevel, "verbosity", "set the verbosity")
- argparser.PersistentFlags().StringArrayVar(&globalFlags.pvs, "pv", nil, "open the file `physical_volume` as part of the filesystem")
+ argparser.PersistentFlags().StringArrayVar(&globalFlags.pvs, "pv", nil,
+ "open the file `physical_volume` as part of the filesystem")
noError(argparser.MarkPersistentFlagFilename("pv"))
- argparser.PersistentFlags().StringVar(&globalFlags.mappings, "mappings", "", "load chunk/dev-extent/blockgroup data from external JSON file `mappings.json`")
+ argparser.PersistentFlags().StringVar(&globalFlags.mappings, "mappings", "",
+ "load chunk/dev-extent/blockgroup data from external JSON file `mappings.json`")
noError(argparser.MarkPersistentFlagFilename("mappings"))
globalFlags.stopProfiling = profile.AddProfileFlags(argparser.PersistentFlags(), "profile.")