aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/chrome_fuzz.cpp
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2015-11-20 13:47:49 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-11-20 13:47:49 -0800
commitd76be9c79baa1530d3dc95c58022e83607a1bb2a (patch)
treeebab3adf39a9eee73f1284517eba04d1ca82fa47 /tools/chrome_fuzz.cpp
parent90ba095c459e38581353073826785074b5953b8c (diff)
Eliminate SkFILE: it always is the same as FILE.
Diffstat (limited to 'tools/chrome_fuzz.cpp')
-rw-r--r--tools/chrome_fuzz.cpp2
1 files changed, 1 insertions, 1 deletions
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;