Skip to content

Commit 864d985

Browse files
authored
Appease unused variable warnings in libfuzzer_stub.cc (#210)
1 parent 4fc5895 commit 864d985

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

fuzzing/engines/libfuzzer_stub.cc

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
extern "C" int main(int argc, char** argv) __attribute__((weak));
1919

2020
int main(int argc, char** argv) {
21+
(void)argc;
22+
(void)argv;
2123
fprintf(stderr, "*** ERROR *** This is a stub *** ERROR ***\n");
2224
fprintf(stderr,
2325
" * You have attempted to build a libFuzzer fuzz test, but did not "

0 commit comments

Comments
 (0)