aboutsummaryrefslogtreecommitdiffstats
path: root/libparc/examples/How To Create an Object Pool/parc_SimpleBufferPool.c
diff options
context:
space:
mode:
Diffstat (limited to 'libparc/examples/How To Create an Object Pool/parc_SimpleBufferPool.c')
-rw-r--r--libparc/examples/How To Create an Object Pool/parc_SimpleBufferPool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libparc/examples/How To Create an Object Pool/parc_SimpleBufferPool.c b/libparc/examples/How To Create an Object Pool/parc_SimpleBufferPool.c
index fbd71b6e..9aad015b 100644
--- a/libparc/examples/How To Create an Object Pool/parc_SimpleBufferPool.c
+++ b/libparc/examples/How To Create an Object Pool/parc_SimpleBufferPool.c
@@ -33,7 +33,7 @@ struct PARCSimpleBufferPool {
static bool
_parcSimpleBufferPool_Destructor(PARCSimpleBufferPool **instancePtr)
{
- assertNotNull(instancePtr, "Parameter must be a non-null pointer to a PARCSimpleBufferPool pointer.");
+ parcAssertNotNull(instancePtr, "Parameter must be a non-null pointer to a PARCSimpleBufferPool pointer.");
PARCSimpleBufferPool *pool = *instancePtr;