From e3063a59022013eecc0dd5633f843a399b8cdbd9 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 28 Apr 2014 19:33:45 -0700 Subject: [PATCH] Fix test. --- format-test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format-test.cc b/format-test.cc index e33bcb54..a38c18b0 100644 --- a/format-test.cc +++ b/format-test.cc @@ -1493,7 +1493,7 @@ TEST(FormatterTest, Ctor) { struct CountingSink { int &num_writes; - explicit CountingSink(int &num_calls) : num_writes(num_writes) {} + explicit CountingSink(int &num_writes) : num_writes(num_writes) {} void operator()(const Writer &) const { ++num_writes;