ecere/com/instance: Fixed MemoryGuard printf for overrun
authorJerome St-Louis <jerome@ecere.com>
Thu, 7 Aug 2014 07:49:52 +0000 (03:49 -0400)
committerJerome St-Louis <jerome@ecere.com>
Thu, 7 Aug 2014 07:49:52 +0000 (03:49 -0400)
ecere/src/com/instance.ec

index 7b95aaf..0fc1519 100644 (file)
@@ -1817,7 +1817,7 @@ static void _free(void * pointer)
                   }
                   if(address[c + size] != 0xAB)
                   {
-                     printf("Buffer Overrun (%d bytes past block of %d)\n", c);
+                     printf("Buffer Overrun (%d bytes past block)\n", c);
                      memoryErrorsCount++;
                      block.OutputStacks(block.freed);
                   }