[libFuzzer] typo in a test

llvm-svn: 284903
This commit is contained in:
Kostya Serebryany 2016-10-22 01:07:38 +00:00
parent 2bfff021ad
commit 10ae9e23a3
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
static char *argv0;
extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv) {
assert(argc > 0);
assert(*argc > 0);
argv0 = **argv;
return 0;
}