# HG changeset patch # User Matti Hamalainen # Date 1189138564 -10800 # Node ID 0cfd5aeacc74b6526757a56761179b21badde3e9 # Parent 890326d0898bb6ad689b3e26f6c891c83bd21fab Cosmetics. diff -r 890326d0898b -r 0cfd5aeacc74 src/audacious/tuple.c --- a/src/audacious/tuple.c Fri Sep 07 07:14:14 2007 +0300 +++ b/src/audacious/tuple.c Fri Sep 07 07:16:04 2007 +0300 @@ -102,7 +102,6 @@ tuple->dict = mowgli_dictionary_create(g_ascii_strcasecmp); TUPLE_UNLOCK_WRITE(); - return tuple; } @@ -220,7 +219,6 @@ TupleValue *value; TUPLE_LOCK_WRITE(); - if ((value = tuple_associate_data(tuple, nfield, field, TUPLE_INT)) == NULL) return FALSE; @@ -240,7 +238,6 @@ g_return_if_fail(nfield < FIELD_LAST); TUPLE_LOCK_WRITE(); - if (nfield < 0) tfield = field; else { @@ -261,7 +258,6 @@ } mowgli_heap_free(tuple_value_heap, value); - TUPLE_UNLOCK_WRITE(); } @@ -274,7 +270,6 @@ g_return_val_if_fail(nfield < FIELD_LAST, TUPLE_UNKNOWN); TUPLE_LOCK_READ(); - if (nfield < 0) { TupleValue *value; if ((value = mowgli_dictionary_retrieve(tuple->dict, field)) != NULL) @@ -285,7 +280,6 @@ } TUPLE_UNLOCK_READ(); - return type; }