Skip to content

Commit

Permalink
Fix mistake in perftest
Browse files Browse the repository at this point in the history
  • Loading branch information
miloyip committed Apr 16, 2015
1 parent 556d154 commit 30ace6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/perftest/perftest.h
Expand Up @@ -81,7 +81,7 @@ class PerfTest : public ::testing::Test {
};
FILE *fp = 0;
for (size_t i = 0; i < sizeof(paths) / sizeof(paths[0]); i++) {
fp = fopen(paths[i], "rb");
fp = fopen(filename_ = paths[i], "rb");
if (fp)
break;
}
Expand Down

0 comments on commit 30ace6f

Please sign in to comment.