From 49d79a3969a6bf4c92729f285b566662832601cf Mon Sep 17 00:00:00 2001 From: akchu Date: Sun, 3 Oct 2004 16:58:30 +0000 Subject: [PATCH] Changed TRUE->true and FALSE->false for C99 compliance. --- bacnet-stack/test/ctest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bacnet-stack/test/ctest.c b/bacnet-stack/test/ctest.c index e31e867e..592ea8ea 100644 --- a/bacnet-stack/test/ctest.c +++ b/bacnet-stack/test/ctest.c @@ -80,13 +80,13 @@ bool ct_addTestFunction(Test* pTest, TestFunc tfun) realloc(pTest->pTestFuns, newSize * sizeof(TestFunc)); if (!new_pTestFuns) - return FALSE; + return false; pTest->pTestFuns = new_pTestFuns; pTest->maxTests += CHUNK; } assert(pTest->nTests < pTest->maxTests); pTest->pTestFuns[pTest->nTests++] = tfun; - return TRUE; + return true; } void ct_setStream(Test* pTest, FILE* pStream)