diff options
author | Andrew Gallant <jamslam@gmail.com> | 2013-12-28 09:25:03 -0500 |
---|---|---|
committer | Přemysl Janouch <p@janouch.name> | 2018-09-08 16:49:19 +0200 |
commit | 5a07ac7108ef2b4074c058fbbd104c49d3cfdc9b (patch) | |
tree | 93860181c5f56d42146f020641cb19dcf79d28f6 /nexgb/xproto | |
parent | efe87cb9081ff3806182cf911f4fd8fbc4928244 (diff) | |
download | haven-5a07ac7108ef2b4074c058fbbd104c49d3cfdc9b.tar.gz haven-5a07ac7108ef2b4074c058fbbd104c49d3cfdc9b.tar.xz haven-5a07ac7108ef2b4074c058fbbd104c49d3cfdc9b.zip |
Fix fmt'd output for union list writing.
Diffstat (limited to 'nexgb/xproto')
-rw-r--r-- | nexgb/xproto/xproto.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nexgb/xproto/xproto.go b/nexgb/xproto/xproto.go index 1e5f4bb..0de64fd 100644 --- a/nexgb/xproto/xproto.go +++ b/nexgb/xproto/xproto.go @@ -1093,7 +1093,7 @@ func (v ClientMessageDataUnion) Bytes() []byte { return buf } -// ClientMessageDataUnionListBytes writes a list of %s(MISSING) values to a byte slice. +// ClientMessageDataUnionListBytes writes a list of ClientMessageDataUnion values to a byte slice. func ClientMessageDataUnionListBytes(buf []byte, list []ClientMessageDataUnion) int { b := 0 var unionBytes []byte |