diff options
| author | Marvin Stenger <marvin.stenger94@gmail.com> | 2017-10-05 15:50:11 +0200 |
|---|---|---|
| committer | Ian Lance Taylor <iant@golang.org> | 2017-10-05 23:19:42 +0000 |
| commit | d153df8e4b5874692f4948e9c8e10720446058e3 (patch) | |
| tree | 84567a80b3f90d91bb6d1832073505427c51d67c /src/os/exec | |
| parent | 90d71fe99e21b68e292327c966946f1706d66514 (diff) | |
| download | go-d153df8e4b5874692f4948e9c8e10720446058e3.tar.xz | |
all: revert "all: prefer strings.LastIndexByte over strings.LastIndex"
This reverts https://golang.org/cl/66372.
Updates #22148
Change-Id: I3e94af3dfc11a2883bf28e1d5e1f32f98760b3ee
Reviewed-on: https://go-review.googlesource.com/68431
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/os/exec')
| -rw-r--r-- | src/os/exec/lp_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/exec/lp_windows.go b/src/os/exec/lp_windows.go index 4e1ffb0014..793d4d98b3 100644 --- a/src/os/exec/lp_windows.go +++ b/src/os/exec/lp_windows.go @@ -26,7 +26,7 @@ func chkStat(file string) error { } func hasExt(file string) bool { - i := strings.LastIndexByte(file, '.') + i := strings.LastIndex(file, ".") if i < 0 { return false } |
