[yocto] [matchbox-wm][PATCH] ewmh: Fix data type of a few XChangeProperty calls

2016-03-20 Thread Jussi Kukkonen
XChangeProperty documentation: "If the specified format is 32, the property data must be a long array." Using int can lead to bogus data being used on platforms where long actually is different from int. Signed-off-by: Jussi Kukkonen --- Yocto-specific reference: Sato does not really use the ot

Re: [yocto] [matchbox-wm][PATCH] ewmh: Fix data type of a few XChangeProperty calls

2016-03-19 Thread Burton, Ross
On 18 March 2016 at 15:11, Jussi Kukkonen wrote: > XChangeProperty documentation: "If the specified format is 32, the > property data must be a long array." > > Using int can lead to bogus data being used on platforms where long > actually is different from int. > > Signed-off-by: Jussi Kukkonen