From cc1d6b33b1524d52b21a6e9794ee6b0d6a2a9d50 Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Tue, 10 Mar 2020 22:04:05 +0100 Subject: unified pointer placement --- examples/argv_fuzzing/argv-fuzz-inl.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/argv_fuzzing/argv-fuzz-inl.h') diff --git a/examples/argv_fuzzing/argv-fuzz-inl.h b/examples/argv_fuzzing/argv-fuzz-inl.h index c595f7ea..c15c0271 100644 --- a/examples/argv_fuzzing/argv-fuzz-inl.h +++ b/examples/argv_fuzzing/argv-fuzz-inl.h @@ -55,12 +55,12 @@ #define MAX_CMDLINE_LEN 100000 #define MAX_CMDLINE_PAR 50000 -static char** afl_init_argv(int* argc) { +static char **afl_init_argv(int *argc) { static char in_buf[MAX_CMDLINE_LEN]; - static char* ret[MAX_CMDLINE_PAR]; + static char *ret[MAX_CMDLINE_PAR]; - char* ptr = in_buf; + char *ptr = in_buf; int rc = 0; if (read(0, in_buf, MAX_CMDLINE_LEN - 2) < 0) {} -- cgit 1.4.1