Better var name to avoid confusion with type name.

This commit is contained in:
Dmitry Chestnykh 2014-08-09 17:05:33 +02:00
parent b09047d1ee
commit 29a0069dc7

View File

@ -58,8 +58,8 @@ func NewLenChars(length int, chars []byte) string {
if _, err := io.ReadFull(rand.Reader, r); err != nil {
panic("error reading from random source: " + err.Error())
}
for _, byte := range r {
c := int(byte)
for _, rb := range r {
c := int(rb)
if c > maxrb {
// Skip this number to avoid modulo bias.
continue