2
0
mirror of https://github.com/OrbTools/OrbCommon synced 2024-11-18 03:25:32 +00:00

xdr: fix hid loading

This commit is contained in:
Minizbot2012 2021-07-28 09:12:06 -04:00
parent 39123578ee
commit fcbabf621a
No known key found for this signature in database
GPG Key ID: 977C8ADE12361917

View File

@ -12,5 +12,5 @@ import (
var file []byte
func init() {
xdr.Unmarshal(bytes.NewReader(file), Mappings)
xdr.Unmarshal(bytes.NewReader(file), &Mappings)
}