aboutsummaryrefslogtreecommitdiffstats
path: root/metis/ccnx/forwarder/metis/strategies/strategy_NexthopStateWithPD.c
diff options
context:
space:
mode:
authorAngelo Mantellini <manangel@cisco.com>2019-02-14 11:06:29 +0100
committerAngelo Mantellini <manangel@cisco.com>2019-02-14 13:57:25 +0100
commite59f9c7e0d731e02aa31c9092ce47f3aaa4d51bc (patch)
tree99ff53c69af5135a1e8d9aee2a033ca47575880c /metis/ccnx/forwarder/metis/strategies/strategy_NexthopStateWithPD.c
parentffee4d39ba3b92bedd1099ea66e0ae6b9a288090 (diff)
[CICN-16] Correct compilation error metissb-forwarder/master
Change-Id: I5df7993240c57202f012203c82304eeda641826f Signed-off-by: Angelo Mantellini <manangel@cisco.com>
Diffstat (limited to 'metis/ccnx/forwarder/metis/strategies/strategy_NexthopStateWithPD.c')
-rw-r--r--metis/ccnx/forwarder/metis/strategies/strategy_NexthopStateWithPD.c5
1 files changed, 3 insertions, 2 deletions
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 <parc/algol/parc_Memory.h>
#include <parc/algol/parc_Object.h>
+#include <parc/assert/parc_Assert.h>
#include <parc/algol/parc_DisplayIndented.h>
#include <ccnx/forwarder/metis/strategies/strategy_NexthopStateWithPD.h>
@@ -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;
}