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_NexthopStateWithPD.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'metis/ccnx/forwarder/metis/strategies/strategy_NexthopStateWithPD.c') diff --git a/metis/ccnx/forwarder/metis/strategies/strategy_NexthopStateWithPD.c b/metis/ccnx/forwarder/metis/strategies/strategy_NexthopStateWithPD.c index e93c5b6b..2e35968d 100644 --- a/metis/ccnx/forwarder/metis/strategies/strategy_NexthopStateWithPD.c +++ b/metis/ccnx/forwarder/metis/strategies/strategy_NexthopStateWithPD.c @@ -20,6 +20,7 @@ #include #include +#include #include #include @@ -55,7 +56,7 @@ parcObject_Override(StrategyNexthopStateWithPD, PARCObject, void strategyNexthopStateWithPD_AssertValid(const StrategyNexthopStateWithPD *instance) { - assertTrue(strategyNexthopStateWithPD_IsValid(instance), + parcAssertTrue(strategyNexthopStateWithPD_IsValid(instance), "StrategyNexthopStateWithPD is not valid."); } @@ -201,7 +202,7 @@ char * strategyNexthopStateWithPD_ToString(const StrategyNexthopStateWithPD *x) { //this is not implemented - trapNotImplemented("strategyNexthopStateWithPD_ToString is not implemented"); + parcTrapNotImplemented("strategyNexthopStateWithPD_ToString is not implemented"); return NULL; } -- cgit 1.2.3-korg