aboutsummaryrefslogtreecommitdiffstats
path: root/libparc/parc/developer/parc_Stopwatch.c
diff options
context:
space:
mode:
Diffstat (limited to 'libparc/parc/developer/parc_Stopwatch.c')
-rw-r--r--libparc/parc/developer/parc_Stopwatch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libparc/parc/developer/parc_Stopwatch.c b/libparc/parc/developer/parc_Stopwatch.c
index dfd8a200..2b696f4a 100644
--- a/libparc/parc/developer/parc_Stopwatch.c
+++ b/libparc/parc/developer/parc_Stopwatch.c
@@ -40,7 +40,7 @@ struct PARCStopwatch {
static bool
_parcStopwatch_Destructor(PARCStopwatch **instancePtr)
{
- assertNotNull(instancePtr, "Parameter must be a non-null pointer to a PARCStopwatch pointer.");
+ parcAssertNotNull(instancePtr, "Parameter must be a non-null pointer to a PARCStopwatch pointer.");
/* cleanup the instance fields here */
return true;
@@ -63,7 +63,7 @@ parcObject_Override(PARCStopwatch, PARCObject,
void
parcStopwatch_AssertValid(const PARCStopwatch *instance)
{
- assertTrue(parcStopwatch_IsValid(instance),
+ parcAssertTrue(parcStopwatch_IsValid(instance),
"PARCStopwatch is not valid.");
}