On 13/09/15 05:29 PM, Thomas Klausner wrote:
> For the call for the API between versions 5 and 13.
> ---
>  src/sis_driver.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/sis_driver.c b/src/sis_driver.c
> index 854cb54..c1d26f3 100644
> --- a/src/sis_driver.c
> +++ b/src/sis_driver.c
> @@ -9397,7 +9397,7 @@ SISMergedPointerMoved(SCRN_ARG_TYPE arg, int x, int y)
>  #elif GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 13
>       miPointerSetPosition(inputInfo.pointer, Absolute, x, y);
>  #elif GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 5
> -     miPointerSetPosition(inputInfo.pointer, x, y);
> +     miPointerSetPosition(inputInfo.pointer, &x, &y);
>  #else
>       UpdateCurrentTime();
>       miPointerAbsoluteCursor(x, y, currentTime.milliseconds);
I'm pretty sure the calls for ABI versions between 13 and 15 also need
the "&". For example, in the
http://cgit.freedesktop.org/xorg/xserver/tree/?id=81cfe44b1ed0de84ad1941fe2ca74bebef3fc58d
tree, hw/xfree86/common/xf86Module.h says ABI_XINPUT_VERSION is 14. But
mi/mipointer.c still has miPointerSetPosition() taking pointers to integers.

Attachment: signature.asc
Description: OpenPGP digital signature

_______________________________________________
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel

Reply via email to