diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-09-28 10:04:56 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-09-28 12:21:40 +0200 |
| commit | eea5f51ff6a3382debe76e65a7eb194baf2930bd (patch) | |
| tree | 3ad58e410e1c0a8e4bf228aebe6bf5f7fb23b0ca /executor/executor.cc | |
| parent | 38c78d5c07a1296817ae0ac9b895ee62cf691ce2 (diff) | |
executor: check for \n in fail/exitf messages
Diffstat (limited to 'executor/executor.cc')
| -rw-r--r-- | executor/executor.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/executor.cc b/executor/executor.cc index aa9f1d053..9473b871f 100644 --- a/executor/executor.cc +++ b/executor/executor.cc @@ -673,7 +673,7 @@ retry: break; case arg_csum_chunk_const: if (chunk_size != 2 && chunk_size != 4 && chunk_size != 8) { - fail("bad checksum const chunk size %lld\n", chunk_size); + fail("bad checksum const chunk size %lld", chunk_size); } // Here we assume that const values come to us big endian. debug_verbose("#%lld: const chunk, value: %llx, size: %llu\n", |
