diff options
Diffstat (limited to 'serialize.fmt')
-rw-r--r-- | serialize.fmt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/serialize.fmt b/serialize.fmt index 0b42037..2076552 100644 --- a/serialize.fmt +++ b/serialize.fmt @@ -146,7 +146,7 @@ PointedThing chk(writePointedThing(w, x)) write16(w, uint16(len(x))) var b bytes.Buffer for i := range x { - x[i].serialize(&b) + x[i].Serialize(&b) } if b.Len() > math.MaxUint32 { chk(ErrTooLong) |