about summary refs log tree commit diff
path: root/src/afl-showmap.c
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2021-03-24 09:41:40 +0100
committervanhauser-thc <vh@thc.org>2021-03-24 11:12:44 +0100
commit70c1de5d64b0559f275cc258c496b37d66efc732 (patch)
tree541525ede9ff5cc7cb96a5eb93536e184ebe86a3 /src/afl-showmap.c
parent2fef89950f826be065cc9677df690ebfd21160c1 (diff)
downloadafl++-70c1de5d64b0559f275cc258c496b37d66efc732.tar.gz
better forkserver error help and code format
Diffstat (limited to 'src/afl-showmap.c')
-rw-r--r--src/afl-showmap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c
index cc0f1a7e..077c9248 100644
--- a/src/afl-showmap.c
+++ b/src/afl-showmap.c
@@ -1119,7 +1119,8 @@ int main(int argc, char **argv_orig, char **envp) {
     unlink(stdin_file);
     atexit(at_exit_handler);
     fsrv->out_file = stdin_file;
-    fsrv->out_fd = open(stdin_file, O_RDWR | O_CREAT | O_EXCL, DEFAULT_PERMISSION);
+    fsrv->out_fd =
+        open(stdin_file, O_RDWR | O_CREAT | O_EXCL, DEFAULT_PERMISSION);
     if (fsrv->out_fd < 0) { PFATAL("Unable to create '%s'", out_file); }
 
     if (arg_offset && use_argv[arg_offset] != stdin_file) {