[script] Simplify _dictionary_name_equal

Just a simple return TRUE since all necessary checking is performed by
_csi_hash_table_lookup().
This commit is contained in:
Chris Wilson 2009-05-25 20:36:34 +01:00
parent 0b5e92e66b
commit 7dbc2fe80a

View file

@ -194,9 +194,7 @@ csi_boolean_new (csi_t *ctx,
static cairo_bool_t
_dictionary_name_equal (const void *_a, const void *_b)
{
const csi_dictionary_entry_t *a = _a;
const csi_dictionary_entry_t *b = _b;
return a->hash_entry.hash == b->hash_entry.hash;
return TRUE;
}
csi_status_t