diff options
author | Dave Airlie <airlied@ppcg5.localdomain> | 2006-11-06 11:41:51 +1100 |
---|---|---|
committer | Dave Airlie <airlied@ppcg5.localdomain> | 2006-11-06 11:41:51 +1100 |
commit | 5e55594061b24521551c45838fbe6c3df57050d1 (patch) | |
tree | 0489add63b8d9d7851a6156ba7149f530b465806 | |
parent | 1e90b7ee8cefff59b70e285557aa7920dea77e81 (diff) |
use a uint64_t for this not a pointer
-rw-r--r-- | shared-core/nouveau_drm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-core/nouveau_drm.h b/shared-core/nouveau_drm.h index 865dbe95..2517bbc3 100644 --- a/shared-core/nouveau_drm.h +++ b/shared-core/nouveau_drm.h @@ -74,7 +74,7 @@ typedef struct drm_nouveau_mem_alloc { int flags; int alignment; uint64_t size; // in bytes - uint64_t __user *region_offset; + uint64_t region_offset; } drm_nouveau_mem_alloc_t; |