From ef1f27f3a3eaa43b4dbd24cab361b9fe43cdce44 Mon Sep 17 00:00:00 2001 From: Dmitri Pal Date: Thu, 2 Jul 2009 10:24:52 -0400 Subject: New deletion unit test. Adds a unit test for deletion and re-adding of the elements to collection. Small syntactical fix in "stack". --- common/collection/collection_stack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/collection/collection_stack.c') diff --git a/common/collection/collection_stack.c b/common/collection/collection_stack.c index 347d9b6c..70211220 100644 --- a/common/collection/collection_stack.c +++ b/common/collection/collection_stack.c @@ -94,7 +94,7 @@ int push_binary_property(struct collection_item *stack, return EINVAL; } - error = add_binary_property(stack, NULL, property, binary_data, length) + error = add_binary_property(stack, NULL, property, binary_data, length); TRACE_FLOW_STRING("push_binary_property", "Exit."); return error; -- cgit