From 35dbf2fe3a74724f88f1230a2424a784922a5bb1 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Fri, 1 Aug 2003 14:21:19 +0000 Subject: [PATCH] This should be Microsoft Visual C++ only svn-id: r9364 --- common/engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/engine.cpp b/common/engine.cpp index c2069083870..4a7f6816ea8 100644 --- a/common/engine.cpp +++ b/common/engine.cpp @@ -267,7 +267,7 @@ void CDECL debug(int level, const char *s, ...) { } void checkHeap() { -#if defined(WIN32) +#if defined(_MSC_VER) if (_heapchk() != _HEAPOK) { error("Heap is invalid!"); }