Skip to content

Commit 8041411

Browse files
committed
cmd/preprofile: remove deleted -v flag and gofmt
1 parent 7f76c00 commit 8041411

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/cmd/preprofile/main.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//
99
// Usage:
1010
//
11-
// go tool preprofile [-v] [-o output] -i input
11+
// go tool preprofile [-o output] -i input
1212
//
1313
//
1414

@@ -25,14 +25,14 @@ import (
2525
)
2626

2727
func usage() {
28-
fmt.Fprintf(os.Stderr, "usage: go tool preprofile [-v] [-o output] -i input\n\n")
28+
fmt.Fprintf(os.Stderr, "usage: go tool preprofile [-o output] -i input\n\n")
2929
flag.PrintDefaults()
3030
os.Exit(2)
3131
}
3232

3333
var (
34-
output = flag.String("o", "", "output file path")
35-
input = flag.String("i", "", "input pprof file path")
34+
output = flag.String("o", "", "output file path")
35+
input = flag.String("i", "", "input pprof file path")
3636
)
3737

3838
func preprocess(profileFile string, outputFile string) error {

0 commit comments

Comments
 (0)