diff options
author | Maarten Maathuis <madman2003@gmail.com> | 2008-01-23 16:40:19 +0100 |
---|---|---|
committer | Maarten Maathuis <madman2003@gmail.com> | 2008-01-23 16:40:19 +0100 |
commit | 7c726086dd6591c7b32bffdcfd8e180309aad14d (patch) | |
tree | 96e5d90498d719871380a6340930707fddeabdab | |
parent | c57f43e3a266d247c8a2be6fd7702caab2dc009b (diff) |
nouveau: Fix warning in nouveau_mem.c
-rw-r--r-- | shared-core/nouveau_mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-core/nouveau_mem.c b/shared-core/nouveau_mem.c index 80540a5c..f4e641b9 100644 --- a/shared-core/nouveau_mem.c +++ b/shared-core/nouveau_mem.c @@ -619,7 +619,7 @@ alloc_ok: block->map_handle = entry->user_token; } - DRM_DEBUG("allocated %d bytes at 0x%x type=0x%08x\n", block->size, block->start, block->flags); + DRM_DEBUG("allocated %lld bytes at 0x%llx type=0x%08x\n", block->size, block->start, block->flags); return block; } |