From 428b2eddc9c47d8306252f0fc5218839d2ff017c Mon Sep 17 00:00:00 2001 From: Harold Lim Date: Tue, 17 Dec 2013 10:32:12 -0800 Subject: Rename NOT_REACHED to OVS_NOT_REACHED This allows other libraries to use util.h that has already defined NOT_REACHED. Signed-off-by: Harold Lim Signed-off-by: Ben Pfaff --- tests/test-heap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test-heap.c') diff --git a/tests/test-heap.c b/tests/test-heap.c index dd5aaa956..ccb14846a 100644 --- a/tests/test-heap.c +++ b/tests/test-heap.c @@ -221,7 +221,7 @@ test_insert_delete__(struct element *elements, goto found; } } - NOT_REACHED(); + OVS_NOT_REACHED(); found: heap_remove(&heap, &element->heap_node); @@ -260,7 +260,7 @@ test_insert_delete_raw__(struct element *elements, goto found; } } - NOT_REACHED(); + OVS_NOT_REACHED(); found: heap_raw_remove(&heap, &element->heap_node); -- cgit v1.2.1