diff --git a/code-t1/src/util/common.c b/code-t1/src/util/common.c index 35d5e44..2cf6528 100644 --- a/code-t1/src/util/common.c +++ b/code-t1/src/util/common.c @@ -30,5 +30,5 @@ void explodesInTestEnvironment(void * p) { - assert(p == "Explode - intercepted call that cannot be made in test environment"); + assert(0 == "Explode - intercepted call that cannot be made in test environment"); } diff --git a/code-t2/src/util/common.c b/code-t2/src/util/common.c index 06d547d..e088268 100644 --- a/code-t2/src/util/common.c +++ b/code-t2/src/util/common.c @@ -29,5 +29,5 @@ void explodesInTestEnvironment(void * p) { - assert(p == "Explode - intercepted call that cannot be made in test environment"); + assert(0 == "Explode - intercepted call that cannot be made in test environment"); } diff --git a/code-t3/src/util/common.c b/code-t3/src/util/common.c index 06d547d..e088268 100644 --- a/code-t3/src/util/common.c +++ b/code-t3/src/util/common.c @@ -29,5 +29,5 @@ void explodesInTestEnvironment(void * p) { - assert(p == "Explode - intercepted call that cannot be made in test environment"); + assert(0 == "Explode - intercepted call that cannot be made in test environment"); }