fix whitespaces

llvm-svn: 363327
This commit is contained in:
Kostya Serebryany 2019-06-13 21:17:49 +00:00
parent 2fa83cb7ee
commit a5b12be60f
1 changed files with 1 additions and 3 deletions

View File

@ -2,7 +2,7 @@
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// Simple test for a fuzzer.
// Simple test for a fuzzer.
// Needs to find a string "FUZZxxxxxxxxxxxxMxxE", where 'x' is any byte.
#include <assert.h>
#include <cstddef>
@ -39,5 +39,3 @@ __attribute__((noinline))
bool Func2(const uint8_t *Data, size_t Size) {
return Size >= 20 && Data[19] == 'E';
}