From 7b8aba46cc8b6d97a15a403cc0461981c6fe6608 Mon Sep 17 00:00:00 2001 From: Benoit Blanchon Date: Thu, 6 Nov 2014 16:08:15 +0100 Subject: [PATCH] Fixed compilartion error --- test/QuotedString_PrintTo_Tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/QuotedString_PrintTo_Tests.cpp b/test/QuotedString_PrintTo_Tests.cpp index 8a91e654..0338faac 100644 --- a/test/QuotedString_PrintTo_Tests.cpp +++ b/test/QuotedString_PrintTo_Tests.cpp @@ -15,7 +15,7 @@ class QuotedString_PrintTo_Tests : public testing::Test { protected: void whenInputIs(const char *input) { StringBuilder sb(buffer, sizeof(buffer)); - returnValue = QuotedString::printTo(input, &sb); + returnValue = QuotedString::printTo(input, sb); } void outputMustBe(const char *expected) {