This commit is contained in:
邹宗楠
2022-08-04 14:27:08 +08:00
parent 8b6349c187
commit c73f22ab60
2 changed files with 3 additions and 3 deletions

View File

@@ -566,8 +566,8 @@ func int2h8l8(i int64) (h, l string) {
}
begin8 := origin2[:8]
end8 := origin2[8:]
r1, _ := strconv.ParseInt(begin8, 2, 32)
r2, _ := strconv.ParseInt(end8, 2, 32)
r1, _ := strconv.ParseInt(begin8, 2, 64)
r2, _ := strconv.ParseInt(end8, 2, 64)
h = fmt.Sprintf("%x", r1)
l = fmt.Sprintf("%x", r2)
if len(h) < 2 {