From dbad3e37f5b28cca240d10244013167a235cea16 Mon Sep 17 00:00:00 2001 From: Amir Livneh Date: Sat, 11 Jan 2025 18:00:17 -0500 Subject: [PATCH] [libFuzzer] Add missing space in FuzzerFlags.def --- compiler-rt/lib/fuzzer/FuzzerFlags.def | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/lib/fuzzer/FuzzerFlags.def b/compiler-rt/lib/fuzzer/FuzzerFlags.def index fc3b3aa8c98ad5..bf6bf4bba5a9b1 100644 --- a/compiler-rt/lib/fuzzer/FuzzerFlags.def +++ b/compiler-rt/lib/fuzzer/FuzzerFlags.def @@ -25,7 +25,7 @@ FUZZER_FLAG_STRING(seed_inputs, "A comma-separated list of input files " "the name of a file containing the comma-separated list.") FUZZER_FLAG_INT(keep_seed, 0, "If 1, keep seed inputs in the corpus even if " "they do not produce new coverage. When used with |reduce_inputs==1|, the " - "seed inputs will never be reduced. This option can be useful when seeds are" + "seed inputs will never be reduced. This option can be useful when seeds are " "not properly formed for the fuzz target but still have useful snippets.") FUZZER_FLAG_INT(cross_over, 1, "If 1, cross over inputs.") FUZZER_FLAG_INT(cross_over_uniform_dist, 0, "Experimental. If 1, use a "