diff options
author | Přemysl Janouch <p@janouch.name> | 2018-09-21 08:35:18 +0200 |
---|---|---|
committer | Přemysl Janouch <p@janouch.name> | 2018-09-30 17:34:25 +0200 |
commit | 1a53c005e95c6db33160da9cddae2bde88c8d1ca (patch) | |
tree | 6701b5419869b57fb847b1c689d60ff4bf7b561f /nexgb | |
parent | 07bf9881cc00a8ff5e0ad4980a612ff1821d37e8 (diff) | |
download | haven-1a53c005e95c6db33160da9cddae2bde88c8d1ca.tar.gz haven-1a53c005e95c6db33160da9cddae2bde88c8d1ca.tar.xz haven-1a53c005e95c6db33160da9cddae2bde88c8d1ca.zip |
nexgb: gofmt
Diffstat (limited to 'nexgb')
-rw-r--r-- | nexgb/xgbgen/context.go | 4 | ||||
-rw-r--r-- | nexgb/xgbgen/xml_fields.go | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/nexgb/xgbgen/context.go b/nexgb/xgbgen/context.go index 8c658e6..579c480 100644 --- a/nexgb/xgbgen/context.go +++ b/nexgb/xgbgen/context.go @@ -49,7 +49,7 @@ func (c *Context) Morph(xmlBytes []byte) { // Translate XML types to nice types c.protocol = parsedXml.Translate(nil) - + // For backwards compatibility we patch the type of the send_event field of // PutImage to be byte if c.protocol.Name == "shm" { @@ -62,7 +62,7 @@ func (c *Context) Morph(xmlBytes []byte) { if !ok || field.xmlName != "send_event" { continue } - field.Type = &Base{ srcName: "byte", xmlName: "CARD8", size: newFixedSize(1, true) } + field.Type = &Base{srcName: "byte", xmlName: "CARD8", size: newFixedSize(1, true)} } } } diff --git a/nexgb/xgbgen/xml_fields.go b/nexgb/xgbgen/xml_fields.go index 8b7b5c7..b72159b 100644 --- a/nexgb/xgbgen/xml_fields.go +++ b/nexgb/xgbgen/xml_fields.go @@ -9,7 +9,7 @@ type XMLField struct { XMLName xml.Name // For 'pad' element - Bytes uint `xml:"bytes,attr"` + Bytes uint `xml:"bytes,attr"` Align uint16 `xml:"align,attr"` // For 'field', 'list', 'localfield', 'exprfield' and 'switch' elements. |