summaryrefslogtreecommitdiff
path: root/xv/xv.go
diff options
context:
space:
mode:
authorAndrew Gallant <[email protected]>2013-12-28 09:33:09 -0500
committerAndrew Gallant <[email protected]>2013-12-28 09:33:09 -0500
commit34dd98df049a0a6ecf661ff9fdfe31292688040a (patch)
treeb2cbe9e643ec6271bbcbdf8c1030a56575d57109 /xv/xv.go
parent9071499d31a04ae4e2e545e2f2227545d32187a4 (diff)
When writing, don't pad the length of bytes produced from inner
structs/unions. Each type should take care of its own padding. Close #14.
Diffstat (limited to 'xv/xv.go')
-rw-r--r--xv/xv.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xv/xv.go b/xv/xv.go
index 5eefe77..d79a594 100644
--- a/xv/xv.go
+++ b/xv/xv.go
@@ -458,7 +458,7 @@ func (v EncodingInfo) Bytes() []byte {
{
structBytes := v.Rate.Bytes()
copy(buf[b:], structBytes)
- b += xgb.Pad(len(structBytes))
+ b += len(structBytes)
}
copy(buf[b:], v.Name[:v.NameSize])