summaryrefslogtreecommitdiffstats
path: root/collection/collection.c
diff options
context:
space:
mode:
Diffstat (limited to 'collection/collection.c')
-rw-r--r--collection/collection.c2
1 files changed, 1 insertions, 1 deletions
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;