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

Commit fc29e81

Browse files
committed
Propose fix some typos
1 parent c6b8e65 commit fc29e81

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/builtins/emutls.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ static void win_error(DWORD last_err, const char *hint) {
118118
NULL, last_err, 0, (LPSTR)&buffer, 1, NULL)) {
119119
fprintf(stderr, "Windows error: %s\n", buffer);
120120
} else {
121-
fprintf(stderr, "Unkown Windows error: %s\n", hint);
121+
fprintf(stderr, "Unknown Windows error: %s\n", hint);
122122
}
123123
LocalFree(buffer);
124124
}

lib/fuzzer/FuzzerDriver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ int FuzzerDriver(int *argc, char ***argv, UserCallback Callback) {
730730
Printf("Dictionary analysis failed\n");
731731
exit(1);
732732
}
733-
Printf("Dictionary analysis suceeded\n");
733+
Printf("Dictionary analysis succeeded\n");
734734
exit(0);
735735
}
736736

lib/fuzzer/afl/afl_driver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ int ExecuteFilesOnyByOne(int argc, char **argv) {
264264
assert(in);
265265
LLVMFuzzerTestOneInput(reinterpret_cast<const uint8_t *>(bytes.data()),
266266
bytes.size());
267-
std::cout << "Execution successfull" << std::endl;
267+
std::cout << "Execution successful" << std::endl;
268268
}
269269
return 0;
270270
}

0 commit comments

Comments
 (0)