summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
Diffstat (limited to 'extra')
-rw-r--r--extra/MacOS.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/MacOS.c b/extra/MacOS.c
index 624b383d..363b40ec 100644
--- a/extra/MacOS.c
+++ b/extra/MacOS.c
@@ -126,7 +126,7 @@ void GC_MacFreeTemporaryMemory(void)
long totalMemoryUsed = 0;
# endif
TemporaryMemoryHandle tempMemBlock = theTemporaryMemory;
- while (tempMemBlock != NULL) {
+ while (tempMemBlock /* != NULL */) {
TemporaryMemoryHandle nextBlock = (**tempMemBlock).nextBlock;
# if !defined(SHARED_LIBRARY_BUILD)
totalMemoryUsed += GetHandleSize((Handle)tempMemBlock);