From 5998ec4af9b49525cb2d16452d79dfffe4acb15a Mon Sep 17 00:00:00 2001 From: Raphael Geissert Date: Tue, 15 Feb 2011 14:10:56 -0600 Subject: [PATCH] Really fix the build failure this time --- test/testbufferoverrun.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testbufferoverrun.cpp b/test/testbufferoverrun.cpp index 40e7de150..ba3cf9151 100644 --- a/test/testbufferoverrun.cpp +++ b/test/testbufferoverrun.cpp @@ -868,7 +868,7 @@ private: " a[256] = 0;\n" // 256 > CHAR_MAX "}\n"); ASSERT_EQUALS("[test.cpp:4]: (error) Array 'a[256]' index 256 out of bounds\n" - "[test.cpp:3]: (error) Array 'a[256]' index -1 out of bounds\n", errout.str()); + "[test.cpp:3]: (error) Array index -1 out of bounds\n", errout.str()); } check("void f(signed char n) {\n"