From af4068a697f67bebdc100279d55c485271e96ab7 Mon Sep 17 00:00:00 2001 From: Stella Lau Date: Tue, 5 Sep 2017 22:14:41 -0700 Subject: [PATCH] Fix function name in tests/fuzz/regression_driver --- tests/fuzz/regression_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fuzz/regression_driver.c b/tests/fuzz/regression_driver.c index 41fdcc940..36ae3884f 100644 --- a/tests/fuzz/regression_driver.c +++ b/tests/fuzz/regression_driver.c @@ -39,7 +39,7 @@ int main(int argc, char const **argv) { FILE *file; /* Check that it is a regular file, and that the fileSize is valid */ - FUZZ_ASSERT_MSG(UTIL_isRegFile(fileName), fileName); + FUZZ_ASSERT_MSG(UTIL_isRegularFile(fileName), fileName); FUZZ_ASSERT_MSG(fileSize <= kMaxFileSize, fileName); /* Ensure we have a large enough buffer allocated */ if (fileSize > bufferSize) { -- 2.47.2