From f48c38f91a581173cc0c49a2db38f41516e65639 Mon Sep 17 00:00:00 2001 From: Victor Costan Date: Mon, 4 Nov 2019 00:06:23 -0800 Subject: [PATCH] Fix one forgotten instance of StringPrintf -> StrFormat. PiperOrigin-RevId: 278315159 --- snappy_unittest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snappy_unittest.cc b/snappy_unittest.cc index 82291c4..37159c3 100644 --- a/snappy_unittest.cc +++ b/snappy_unittest.cc @@ -1479,7 +1479,7 @@ static void BM_ZFlatIncreasingTableSize(int iters, int arg) { for (int i = 0; i < dst.size(); ++i) { delete[] dst[i]; } - SetBenchmarkLabel(StringPrintf("%zd tables", contents.size())); + SetBenchmarkLabel(StrFormat("%zd tables", contents.size())); } BENCHMARK(BM_ZFlatIncreasingTableSize)->DenseRange(0, 0);