From 3686c9d90a8346b346dff48c0f3082b9bcdbd604 Mon Sep 17 00:00:00 2001 From: "scroggo@google.com" Date: Tue, 25 Sep 2012 17:36:36 +0000 Subject: Fix a warning in PictureBenchmark. Forgot to change from false to NULL. False does the right thing, but gives a warning. Fix the warning. Review URL: https://codereview.appspot.com/6570049 git-svn-id: http://skia.googlecode.com/svn/trunk@5666 2bbb7eff-a529-9590-31e7-b0007b416f81 --- tools/PictureBenchmark.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/PictureBenchmark.cpp b/tools/PictureBenchmark.cpp index 0b4f56ebe8..fbf1585d1e 100644 --- a/tools/PictureBenchmark.cpp +++ b/tools/PictureBenchmark.cpp @@ -85,7 +85,7 @@ void PictureBenchmark::run(SkPicture* pict) { fRenderer->setup(); timer->start(); - fRenderer->render(false); + fRenderer->render(NULL); timer->truncatedEnd(); // Finishes gl context -- cgit v1.2.3