diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-04-19 16:42:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-19 16:42:40 +0200 |
commit | 8197e9b2e44158e65fd778149919e7229c7099c1 (patch) | |
tree | 23156af7d828baec786cbe97d5e297fd6670b9d9 /qbdi_mode/demo-so.c | |
parent | baec99079f5bb47b762c4facc0e881a63658a385 (diff) | |
download | afl++-8197e9b2e44158e65fd778149919e7229c7099c1.tar.gz |
clang-tidy readability-braces (#323)
Diffstat (limited to 'qbdi_mode/demo-so.c')
-rwxr-xr-x | qbdi_mode/demo-so.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qbdi_mode/demo-so.c b/qbdi_mode/demo-so.c index dbb7b714..dd367036 100755 --- a/qbdi_mode/demo-so.c +++ b/qbdi_mode/demo-so.c @@ -29,7 +29,9 @@ int target_func(char *buf, int size) { } break; - default: puts("default action"); break; + default: + puts("default action"); + break; } |