summaryrefslogtreecommitdiff
path: root/xgb.go
diff options
context:
space:
mode:
authorAndrew Gallant <[email protected]>2016-03-29 16:23:18 -0400
committerAndrew Gallant <[email protected]>2016-03-29 16:23:18 -0400
commitb3a96fa0bc5f20dd08ed8342359a31b64bd761fa (patch)
tree05e13ac8d1a42349b766b0abd6d2a55b5ee3986f /xgb.go
parent5d9015c16e326c446bad9da7b29698d659069af5 (diff)
fix structs with field name of 'Bytes'
(it conflict with a method of the same name that is generated for all such structs)
Diffstat (limited to 'xgb.go')
-rw-r--r--xgb.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xgb.go b/xgb.go
index f49d19b..3d2c61f 100644
--- a/xgb.go
+++ b/xgb.go
@@ -61,7 +61,7 @@ type Conn struct {
seqChan chan uint16
reqChan chan *request
closing chan chan struct{}
-
+
// ExtLock is a lock used whenever new extensions are initialized.
// It should not be used. It is exported for use in the extension
// sub-packages.