diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-03-10 22:04:05 +0100 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-03-10 22:04:05 +0100 |
commit | cc1d6b33b1524d52b21a6e9794ee6b0d6a2a9d50 (patch) | |
tree | 717c62b52076b37cb9d4e4efc9f33cf09dea723b /test-instr.c | |
parent | 2832cb643d90ff6bad7a6ba4ff139988f10b171a (diff) | |
download | afl++-cc1d6b33b1524d52b21a6e9794ee6b0d6a2a9d50.tar.gz |
unified pointer placement
Diffstat (limited to 'test-instr.c')
-rw-r--r-- | test-instr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-instr.c b/test-instr.c index f96db868..579577a4 100644 --- a/test-instr.c +++ b/test-instr.c @@ -23,11 +23,11 @@ #include <sys/stat.h> #include <fcntl.h> -int main(int argc, char** argv) { +int main(int argc, char **argv) { int fd = 0; char buff[8]; - char* buf = buff; + char *buf = buff; // we support command line parameter and stdin if (argc == 2) { |