]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Fix function name in tests/fuzz/regression_driver 834/head
authorStella Lau <laus@fb.com>
Wed, 6 Sep 2017 05:14:41 +0000 (22:14 -0700)
committerStella Lau <laus@fb.com>
Wed, 6 Sep 2017 05:14:41 +0000 (22:14 -0700)
tests/fuzz/regression_driver.c

index 41fdcc940bb41d3e935f5e565fe66b2b4d2451c5..36ae3884f9bff5d0daf7501893ef6fc67d796874 100644 (file)
@@ -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) {