diff options
author | Dave Airlie <airliedfreedesktop.org> | 2005-02-14 09:27:38 +0000 |
---|---|---|
committer | Dave Airlie <airliedfreedesktop.org> | 2005-02-14 09:27:38 +0000 |
commit | 8d12a6d537ca346291bc3e3bc90cc73509f4b419 (patch) | |
tree | 65e93d5c0717c2fa23f73a12345be148231fa0bd /src/mesa/drivers/dri/common/texmem.c | |
parent | fbdd7a5e7487849bfe06a7bef68b4dad75f5d58c (diff) |
fix some signed vs unsigned warnings
Diffstat (limited to 'src/mesa/drivers/dri/common/texmem.c')
-rw-r--r-- | src/mesa/drivers/dri/common/texmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/common/texmem.c b/src/mesa/drivers/dri/common/texmem.c index 192b7870491..acefce0f597 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 ); |