Skip to content
Snippets Groups Projects
Commit 39a180f3 authored by ram's avatar ram
Browse files

Fix to toolkit-write-value to allow it to write either signed or unsigned

integers.
parent 4ac92fda
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@
(xlib:cursor (message-write-xid message (xlib:cursor-id value) :cursor))
((unsigned-byte 24)
(message-put-dblword message (combine-type-and-data :short value)))
((signed-byte 32)
((or (signed-byte 32) (unsigned-byte 32))
(message-put-dblword message (combine-type-and-data :int 0))
(message-put-dblword message value))
((member t nil)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment