Fix typo in error message `uint32` -> `uint16`

pull/1558/head
Sergej Brazdeikis 2023-03-11 16:15:52 +01:00 committed by Jack Christensen
parent 19039e6dd1
commit 9ae852eb58
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ func int64AssignTo(srcVal int64, srcValid bool, dst any) error {
*v = uint8(srcVal)
case *uint16:
if srcVal < 0 {
return fmt.Errorf("%d is less than zero for uint32", srcVal)
return fmt.Errorf("%d is less than zero for uint16", srcVal)
} else if srcVal > math.MaxUint16 {
return fmt.Errorf("%d is greater than maximum value for uint16", srcVal)
}