From e59f9c7e0d731e02aa31c9092ce47f3aaa4d51bc Mon Sep 17 00:00:00 2001 From: Angelo Mantellini Date: Thu, 14 Feb 2019 11:06:29 +0100 Subject: [CICN-16] Correct compilation error metis Change-Id: I5df7993240c57202f012203c82304eeda641826f Signed-off-by: Angelo Mantellini --- metis/ccnx/forwarder/metis/strategies/strategy_NexthopState.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'metis/ccnx/forwarder/metis/strategies/strategy_NexthopState.c') diff --git a/metis/ccnx/forwarder/metis/strategies/strategy_NexthopState.c b/metis/ccnx/forwarder/metis/strategies/strategy_NexthopState.c index 839ece06..7f39bb2d 100644 --- a/metis/ccnx/forwarder/metis/strategies/strategy_NexthopState.c +++ b/metis/ccnx/forwarder/metis/strategies/strategy_NexthopState.c @@ -18,6 +18,7 @@ #include #include +#include #include #include @@ -52,7 +53,7 @@ parcObject_Override(StrategyNexthopState, PARCObject, void strategyNexthopState_AssertValid(const StrategyNexthopState *instance) { - assertTrue(strategyNexthopState_IsValid(instance), + parcAssertTrue(strategyNexthopState_IsValid(instance), "StrategyNexthopState is not valid."); } @@ -188,7 +189,7 @@ char * strategyNexthopState_ToString(const StrategyNexthopState *x) { //this is not implemented - trapNotImplemented("strategyNexthopState_ToString is not implemented"); + parcTrapNotImplemented("strategyNexthopState_ToString is not implemented"); return NULL; } -- cgit 1.2.3-korg