summaryrefslogtreecommitdiff
path: root/libdrm/xf86drm.c
diff options
context:
space:
mode:
authorColeman Kane <cokane@cokane.org>2008-08-18 17:08:21 -0400
committerRobert Noland <rnoland@2hip.net>2008-08-18 17:08:21 -0400
commit41b83a99583486ad4f8760a6537d34783769bfc3 (patch)
tree9b9b43b56e39de0334cc69875c55fe1cbb2cdfa4 /libdrm/xf86drm.c
parenta5381cac55e54a535acf752970886b659948563c (diff)
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 <rnoland@2hip.net>
Diffstat (limited to 'libdrm/xf86drm.c')
-rw-r--r--libdrm/xf86drm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdrm/xf86drm.c b/libdrm/xf86drm.c
index 150dd5f8..7202c8d7 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;