aboutsummaryrefslogtreecommitdiff
path: root/src/os/exec/exec.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/exec/exec.go')
-rw-r--r--src/os/exec/exec.go9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/os/exec/exec.go b/src/os/exec/exec.go
index a23d1c4a2d..2881345fb3 100644
--- a/src/os/exec/exec.go
+++ b/src/os/exec/exec.go
@@ -1096,7 +1096,7 @@ func (w *prefixSuffixSaver) Write(p []byte) (n int, err error) {
// grow larger than w.N. It returns the un-appended suffix of p.
func (w *prefixSuffixSaver) fill(dst *[]byte, p []byte) (pRemain []byte) {
if remain := w.N - len(*dst); remain > 0 {
- add := minInt(len(p), remain)
+ add := min(len(p), remain)
*dst = append(*dst, p[:add]...)
p = p[add:]
}
@@ -1121,13 +1121,6 @@ func (w *prefixSuffixSaver) Bytes() []byte {
return buf.Bytes()
}
-func minInt(a, b int) int {
- if a < b {
- return a
- }
- return b
-}
-
// environ returns a best-effort copy of the environment in which the command
// would be run as it is currently configured. If an error occurs in computing
// the environment, it is returned alongside the best-effort copy.