Skip to content
This repository was archived by the owner on Mar 28, 2020. It is now read-only.

Propose fix some typos #17

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/builtins/emutls.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ static void win_error(DWORD last_err, const char *hint) {
NULL, last_err, 0, (LPSTR)&buffer, 1, NULL)) {
fprintf(stderr, "Windows error: %s\n", buffer);
} else {
fprintf(stderr, "Unkown Windows error: %s\n", hint);
fprintf(stderr, "Unknown Windows error: %s\n", hint);
}
LocalFree(buffer);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/fuzzer/FuzzerDriver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ int FuzzerDriver(int *argc, char ***argv, UserCallback Callback) {
Printf("Dictionary analysis failed\n");
exit(1);
}
Printf("Dictionary analysis suceeded\n");
Printf("Dictionary analysis succeeded\n");
exit(0);
}

Expand Down
2 changes: 1 addition & 1 deletion lib/fuzzer/afl/afl_driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ int ExecuteFilesOnyByOne(int argc, char **argv) {
assert(in);
LLVMFuzzerTestOneInput(reinterpret_cast<const uint8_t *>(bytes.data()),
bytes.size());
std::cout << "Execution successfull" << std::endl;
std::cout << "Execution successful" << std::endl;
}
return 0;
}
Expand Down