r600: fix the build when RADEON_DEBUG_BO is set
authorAlex Deucher <alexdeucher@gmail.com>
Mon, 3 Aug 2009 07:12:56 +0000 (03:12 -0400)
committerAlex Deucher <alexdeucher@gmail.com>
Mon, 3 Aug 2009 07:12:56 +0000 (03:12 -0400)
src/mesa/drivers/dri/radeon/radeon_bo_legacy.c

index 6084b356a3bef999a91969009a620d87b907b3d0..e608520a6e304aa59c6be00a9b8902f6b2aeaba0 100644 (file)
@@ -916,7 +916,7 @@ struct bo_legacy *radeon_legacy_bo_alloc_fake(struct radeon_bo_manager *bom,
     struct bo_legacy *bo;
 
 #ifdef RADEON_DEBUG_BO
-    bo = bo_allocate(boml, size, 0, RADEON_GEM_DOMAIN_VRAM, 0, szBufUsage);
+    bo = bo_allocate(boml, size, 0, RADEON_GEM_DOMAIN_VRAM, 0, "fake bo");
 #else
     bo = bo_allocate(boml, size, 0, RADEON_GEM_DOMAIN_VRAM, 0);
 #endif /* RADEON_DEBUG_BO */