From ed71c57f1f8baf7fabe5551a0e27d7d0d0ece58c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Thu, 6 Jan 2011 12:07:18 +0100 Subject: [PATCH] astyle formatting --- test/testother.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/testother.cpp b/test/testother.cpp index 010ab319f..5284aa522 100644 --- a/test/testother.cpp +++ b/test/testother.cpp @@ -1625,14 +1625,14 @@ private: "}\n" ); ASSERT_EQUALS("[test.cpp:2]: (warning) memset() called to fill 0" - " bytes of \"p\". Second and third arguments might be inverted.\n", errout.str()); + " bytes of \"p\". Second and third arguments might be inverted.\n", errout.str()); check("void f() {\n" " memset(p, sizeof(p), 0)\n" "}\n" ); TODO_ASSERT_EQUALS("[test.cpp:2]: (warning) memset() called to fill 0" - " bytes of \"p\". Second and third arguments might be inverted.\n", errout.str()); + " bytes of \"p\". Second and third arguments might be inverted.\n", errout.str()); } };