Use unsigned long instead of u64 in drm_modeset_ctl_t

A bad idea, ABI-wise, but we're going to be changing this structure anyway
before we merge upstream, so just fix the build for now.
This commit is contained in:
Jesse Barnes 2007-11-01 15:02:26 -07:00
parent 00d6026557
commit 128a8f7ea2

View file

@ -565,7 +565,7 @@ typedef enum {
* \sa drmModesetCtl().
*/
typedef struct drm_modeset_ctl {
u64 arg;
unsigned long arg;
drm_modeset_ctl_cmd_t cmd;
} drm_modeset_ctl_t;