From 8d12a6d537ca346291bc3e3bc90cc73509f4b419 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Mon, 14 Feb 2005 09:27:38 +0000 Subject: fix some signed vs unsigned warnings --- src/mesa/drivers/dri/common/texmem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mesa/drivers/dri/common/texmem.c') diff --git a/src/mesa/drivers/dri/common/texmem.c b/src/mesa/drivers/dri/common/texmem.c index 192b787049..acefce0f59 100644 --- a/src/mesa/drivers/dri/common/texmem.c +++ b/src/mesa/drivers/dri/common/texmem.c @@ -188,7 +188,7 @@ static void printLocalLRU( driTexHeap * heap, const char *callername ) static void printGlobalLRU( driTexHeap * heap, const char *callername ) { drmTextureRegionPtr list = heap->global_regions; - int i, j; + unsigned int i, j; fprintf( stderr, "%s in %s:\nGlobal LRU, heap %d list %p:\n", __FUNCTION__, callername, heap->heapId, (void *)list ); -- cgit v1.2.3