diff options
author | Lenny Maiorani <lenny@colorado.edu> | 2015-08-12 20:00:10 +0000 |
---|---|---|
committer | Lenny Maiorani <lenny@colorado.edu> | 2015-08-12 20:00:10 +0000 |
commit | 1230a549703acb0f71826586ccf0d8b2bc366d30 (patch) | |
tree | 0334c29dfc0e6aacbc64d45d16d4d6671a94e429 | |
parent | 3bb3e0930857246c65dbe8306adbcc2230b8239e (diff) | |
download | bcm5719-llvm-1230a549703acb0f71826586ccf0d8b2bc366d30.tar.gz bcm5719-llvm-1230a549703acb0f71826586ccf0d8b2bc366d30.zip |
Fix missing space in libfuzzer's help text.
llvm-svn: 244800
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerFlags.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerFlags.def b/llvm/lib/Fuzzer/FuzzerFlags.def index d5a428bb25a..7bc18af2248 100644 --- a/llvm/lib/Fuzzer/FuzzerFlags.def +++ b/llvm/lib/Fuzzer/FuzzerFlags.def @@ -49,7 +49,7 @@ FUZZER_FLAG_INT(workers, 0, " If zero, \"min(jobs,NumberOfCpuCores()/2)\" is used.") FUZZER_FLAG_INT(reload, 1, "Reload the main corpus periodically to get new units" - "discovered by other processes.") + " discovered by other processes.") FUZZER_FLAG_STRING(tokens, "Use the file with tokens (one token per line) to" " fuzz a token based input language.") FUZZER_FLAG_STRING(apply_tokens, "Read the given input file, substitute bytes " |