From: Coleman Kane Date: Mon, 18 Aug 2008 21:08:21 +0000 (-0400) Subject: Change prototype of drmIoctl to unsigned long request. X-Git-Tag: submit/1.0/20121108.012404~746 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=41b83a99583486ad4f8760a6537d34783769bfc3;p=profile%2Fivi%2Flibdrm.git Change prototype of drmIoctl to unsigned long request. This resolves and issue on amd64 FreeBSD and it looks like the linux ioctl syscall should be unsigned long as well. Signed-off-by: Robert Noland --- diff --git a/libdrm/xf86drm.c b/libdrm/xf86drm.c index 150dd5f..7202c8d 100644 --- a/libdrm/xf86drm.c +++ b/libdrm/xf86drm.c @@ -175,7 +175,7 @@ static char *drmStrdup(const char *s) * Call ioctl, restarting if it is interupted */ static int -drmIoctl(int fd, int request, void *arg) +drmIoctl(int fd, unsigned long request, void *arg) { int ret;