use a uint64_t for this not a pointer

main
Dave Airlie 2006-11-06 11:41:51 +11:00
parent 1e90b7ee8c
commit 5e55594061
1 changed files with 1 additions and 1 deletions

View File

@ -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;