diff options
Diffstat (limited to 'src/math/bits')
| -rw-r--r-- | src/math/bits/bits.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/bits/bits.go b/src/math/bits/bits.go index 9da1c6e580..b06c363348 100644 --- a/src/math/bits/bits.go +++ b/src/math/bits/bits.go @@ -65,7 +65,7 @@ func TrailingZeros8(x uint8) int { } // TrailingZeros16 returns the number of trailing zero bits in x; the result is 16 for x == 0. -func TrailingZeros16(x uint16) (n int) { +func TrailingZeros16(x uint16) int { if x == 0 { return 16 } |
