Skip to content

Commit

Permalink
fix uint64/int64 typo
Browse files Browse the repository at this point in the history
  • Loading branch information
serprex committed Apr 5, 2024
1 parent b92551a commit 16676be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib.go
Original file line number Diff line number Diff line change
Expand Up @@ -353,9 +353,9 @@ func lmEncode(
case []byte:
return Bin(unsafe.String(unsafe.SliceData(ud), len(ud))).PackMsg(buf)
case uint64:
return Signed(ud).PackMsg(buf)
case int64:
return Unsigned(ud).PackMsg(buf)
case int64:
return Signed(ud).PackMsg(buf)
case time.Time:
return Time(ud).PackMsg(buf)
default:
Expand Down

0 comments on commit 16676be

Please sign in to comment.