consistent use of hex value

This commit is contained in:
2024-12-19 21:50:33 -06:00
parent ea184a936d
commit f5b944579d
4 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ func DecodeInfoTrackerChunk(bytes []byte) InfoTrackerChunk {
for offset < int(chunk.Header.DataLen) {
switch id := binary.LittleEndian.Uint16(chunk.ChunkData[offset : offset+2]); id {
case 0:
case 0x0000:
tracker_name := DecodeInfoTrackerNameChunk(chunk.ChunkData[offset:])
data.TrackerName = &tracker_name
offset += 4