aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go')
-rw-r--r--src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go b/src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go
index 66e5c86b9d..16b0b0a3b5 100644
--- a/src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go
+++ b/src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go
@@ -28,7 +28,6 @@ import (
"github.com/google/pprof/internal/plugin"
"github.com/google/pprof/internal/report"
- "github.com/google/pprof/third_party/svg"
)
// commands describes the commands accepted by pprof.
@@ -398,7 +397,7 @@ func massageDotSVG() PostProcessor {
if err := generateSVG(input, baseSVG, ui); err != nil {
return err
}
- _, err := output.Write([]byte(svg.Massage(baseSVG.String())))
+ _, err := output.Write([]byte(massageSVG(baseSVG.String())))
return err
}
}