We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f76c00 commit 8041411Copy full SHA for 8041411
src/cmd/preprofile/main.go
@@ -8,7 +8,7 @@
8
//
9
// Usage:
10
11
-// go tool preprofile [-v] [-o output] -i input
+// go tool preprofile [-o output] -i input
12
13
14
@@ -25,14 +25,14 @@ import (
25
)
26
27
func usage() {
28
- fmt.Fprintf(os.Stderr, "usage: go tool preprofile [-v] [-o output] -i input\n\n")
+ fmt.Fprintf(os.Stderr, "usage: go tool preprofile [-o output] -i input\n\n")
29
flag.PrintDefaults()
30
os.Exit(2)
31
}
32
33
var (
34
- output = flag.String("o", "", "output file path")
35
- input = flag.String("i", "", "input pprof file path")
+ output = flag.String("o", "", "output file path")
+ input = flag.String("i", "", "input pprof file path")
36
37
38
func preprocess(profileFile string, outputFile string) error {
0 commit comments