This commit is contained in:
2025-08-16 21:13:23 +00:00
parent 893d2b81d7
commit 64816fe4b6

View File

@@ -478,7 +478,7 @@ func WriteString16(w io.Writer, str string) error {
}
// для записи timestamp-ов
func WriteInt64AsUint32(w io.Writer, num int) error {
func WriteInt64AsUint32(w io.Writer, num int64) error {
if num < 0 || num > math.MaxUint32 {
return ErrRange
}