From b597c0e70474f1ee40fd78d006fc1da1a04d4bba Mon Sep 17 00:00:00 2001 From: Dmitri Pal Date: Mon, 26 Mar 2012 19:34:04 -0400 Subject: Use right macro Use correct macro instead of type casting. --- collection/collection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'collection') diff --git a/collection/collection.c b/collection/collection.c index 1b7762a..4b8e744 100644 --- a/collection/collection.c +++ b/collection/collection.c @@ -470,7 +470,7 @@ int col_insert_item_into_current(struct collection_item *collection, TRACE_INFO_STRING("Property:", item->property); TRACE_INFO_NUMBER("Type:", item->type); if (col_find_property(collection, item->property, 0, 1, item->type, &parent)) { - TRACE_INFO_NUMBER("Current:", (unsigned)(parent->next)); + TRACE_INFO_LNUMBER("Current:", parent->next); current = parent->next; parent->next = current->next; if (header->last == current) header->last = parent; -- cgit