summaryrefslogtreecommitdiff
path: root/src/fuzz
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2018-01-21 22:25:37 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2018-01-22 09:54:30 +0900
commit7444956723aef43ef84da26b14b5ecd26cc7ae77 (patch)
tree8b5cbb84a06c2c8ed3ce593b6169ed8cb779b305 /src/fuzz
parent48eae2e480ad0097ca432e16070e2658670bb06a (diff)
downloadsystemd-7444956723aef43ef84da26b14b5ecd26cc7ae77.tar.gz
systemd-7444956723aef43ef84da26b14b5ecd26cc7ae77.tar.bz2
systemd-7444956723aef43ef84da26b14b5ecd26cc7ae77.zip
fuzz: fix coding style
Diffstat (limited to 'src/fuzz')
-rw-r--r--src/fuzz/fuzz-main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fuzz/fuzz-main.c b/src/fuzz/fuzz-main.c
index ca9abe9068..45e46907e2 100644
--- a/src/fuzz/fuzz-main.c
+++ b/src/fuzz/fuzz-main.c
@@ -44,7 +44,7 @@ int main(int argc, char **argv) {
}
printf("%s... ", name);
fflush(stdout);
- (void)LLVMFuzzerTestOneInput((uint8_t*)buf, size);
+ (void) LLVMFuzzerTestOneInput((uint8_t*)buf, size);
printf("ok\n");
}
return EXIT_SUCCESS;