From d76be9c79baa1530d3dc95c58022e83607a1bb2a Mon Sep 17 00:00:00 2001 From: halcanary Date: Fri, 20 Nov 2015 13:47:49 -0800 Subject: Eliminate SkFILE: it always is the same as FILE. Review URL: https://codereview.chromium.org/1467533003 --- tools/chrome_fuzz.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/chrome_fuzz.cpp') diff --git a/tools/chrome_fuzz.cpp b/tools/chrome_fuzz.cpp index f05c646351..f49e12693b 100644 --- a/tools/chrome_fuzz.cpp +++ b/tools/chrome_fuzz.cpp @@ -11,7 +11,7 @@ static const int kBitmapSize = 24; static bool read_test_case(const char* filename, SkString* testdata) { - SkFILE* file = sk_fopen(filename, kRead_SkFILE_Flag); + FILE* file = sk_fopen(filename, kRead_SkFILE_Flag); if (!file) { SkDebugf("couldn't open file %s\n", filename); return false; -- cgit v1.2.3