diff options
author | Maik Betka <9078425+voidptr127@users.noreply.github.com> | 2023-04-21 17:19:37 +0200 |
---|---|---|
committer | Maik Betka <9078425+voidptr127@users.noreply.github.com> | 2023-04-21 17:21:47 +0200 |
commit | 228e9527cb0c00644e9601afc0449c586b468576 (patch) | |
tree | 9fdba9691096aa9c86b7b97006ef1f0fe62bcffd | |
parent | 53ff09969cb8da08920f95773bad53e9f100ccc4 (diff) | |
download | afl++-228e9527cb0c00644e9601afc0449c586b468576.tar.gz |
fixed formatting with make code-format
-rw-r--r-- | src/afl-fuzz-state.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/afl-fuzz-state.c b/src/afl-fuzz-state.c index cccebeb9..5e736029 100644 --- a/src/afl-fuzz-state.c +++ b/src/afl-fuzz-state.c @@ -396,10 +396,10 @@ void read_afl_environment(afl_state_t *afl, char **envp) { } else if (!strncmp(env, "AFL_POST_PROCESS_KEEP_ORIGINAL", - afl_environment_variable_len)) { + afl_environment_variable_len)) { - afl->afl_env.afl_post_process_keep_original = - get_afl_env(afl_environment_variables[i]) ? 1 : 0; + afl->afl_env.afl_post_process_keep_original = + get_afl_env(afl_environment_variables[i]) ? 1 : 0; } else if (!strncmp(env, "AFL_TMPDIR", |