Mercurial > audlegacy
changeset 3500:0cfd5aeacc74 trunk
Cosmetics.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Fri, 07 Sep 2007 07:16:04 +0300 |
parents | 890326d0898b |
children | 95d6cbf21614 |
files | src/audacious/tuple.c |
diffstat | 1 files changed, 0 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- 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; }