aboutsummaryrefslogtreecommitdiff
path: root/nexgb/xgb.go
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2016-03-29 16:23:18 -0400
committerPřemysl Janouch <p@janouch.name>2018-09-08 16:49:25 +0200
commit1614b58c420f7875f92a5469c77fd7aeccc7a106 (patch)
treebccb47fefebc03e48c39ab96be807faa0fd15442 /nexgb/xgb.go
parent8d343cfd3a12d910d6a663f2d5f2cd4a41d88ce2 (diff)
downloadhaven-1614b58c420f7875f92a5469c77fd7aeccc7a106.tar.gz
haven-1614b58c420f7875f92a5469c77fd7aeccc7a106.tar.xz
haven-1614b58c420f7875f92a5469c77fd7aeccc7a106.zip
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 'nexgb/xgb.go')
-rw-r--r--nexgb/xgb.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/nexgb/xgb.go b/nexgb/xgb.go
index f49d19b..3d2c61f 100644
--- a/nexgb/xgb.go
+++ b/nexgb/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.