From 179239565483747cb9ed6e938746c0dbd9bc3a24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Tue, 18 May 2010 20:08:27 +0200 Subject: [PATCH] astyle formatting --- lib/checkmemoryleak.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/checkmemoryleak.cpp b/lib/checkmemoryleak.cpp index e13970054..8146ba498 100644 --- a/lib/checkmemoryleak.cpp +++ b/lib/checkmemoryleak.cpp @@ -2112,7 +2112,7 @@ void CheckMemoryLeakInFunction::checkScope(const Token *Tok1, const std::string // Check for memory leaks due to improper realloc() usage. // Below, "a" may be set to null without being freed if realloc() cannot // allocate the requested memory: -// a = malloc(10); a = realloc(a, 100); +// a = malloc(10); a = realloc(a, 100); //--------------------------------------------------------------------------- void CheckMemoryLeakInFunction::checkReallocUsage() {