r300g: fixup the handle_compare function

Accidentally negated in 685c3262b9.
This commit is contained in:
Marek Olšák
2011-02-13 00:31:04 +01:00
parent 1fd6bbc881
commit 8ab1fcc66a
@@ -314,7 +314,7 @@ static void radeon_bomgr_destroy(struct pb_manager *_mgr)
FREE(mgr);
}
#define PTR_TO_UINT(x) ((unsigned)((intptr_t)(x) & 0xffffffff))
#define PTR_TO_UINT(x) ((unsigned)((intptr_t)(x)))
static unsigned handle_hash(void *key)
{
@@ -323,7 +323,7 @@ static unsigned handle_hash(void *key)
static int handle_compare(void *key1, void *key2)
{
return PTR_TO_UINT(key1) == PTR_TO_UINT(key2);
return PTR_TO_UINT(key1) != PTR_TO_UINT(key2);
}
struct pb_manager *radeon_bomgr_create(struct radeon_drm_winsys *rws)