diff options
Diffstat (limited to 'nexgb/xfixes')
| -rw-r--r-- | nexgb/xfixes/xfixes.go | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/nexgb/xfixes/xfixes.go b/nexgb/xfixes/xfixes.go index a34df54..9a08c93 100644 --- a/nexgb/xfixes/xfixes.go +++ b/nexgb/xfixes/xfixes.go @@ -1495,7 +1495,7 @@ func getCursorImageAndNameReply(buf []byte) *GetCursorImageAndNameReply {  		byteString := make([]byte, v.Nbytes)  		copy(byteString[:v.Nbytes], buf[b:])  		v.Name = string(byteString) -		b += xgb.Pad(int(v.Nbytes)) +		b += int(v.Nbytes)  	}  	v.CursorImage = make([]uint32, (int(v.Width) * int(v.Height))) @@ -1602,7 +1602,7 @@ func getCursorNameReply(buf []byte) *GetCursorNameReply {  		byteString := make([]byte, v.Nbytes)  		copy(byteString[:v.Nbytes], buf[b:])  		v.Name = string(byteString) -		b += xgb.Pad(int(v.Nbytes)) +		b += int(v.Nbytes)  	}  	return v | 
