diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-09-03 20:43:11 +0200 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-09-03 20:43:11 +0200 |
commit | 7151651ea9a87f394cf7f44fcba56cd0d2b7eefa (patch) | |
tree | 18f302c2d67c07deacc5680d8920b7d5e221a8da /include/afl-as.h | |
parent | 0d7ecd4327aa4c67a0ddf1807847f9106db07be1 (diff) | |
download | afl++-7151651ea9a87f394cf7f44fcba56cd0d2b7eefa.tar.gz |
remove macro indentation from code-format
Diffstat (limited to 'include/afl-as.h')
-rw-r--r-- | include/afl-as.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/afl-as.h b/include/afl-as.h index 4f8fb640..55d8694d 100644 --- a/include/afl-as.h +++ b/include/afl-as.h @@ -398,9 +398,9 @@ static const u8* main_payload_32 = recognize .string. */ #ifdef __APPLE__ -# define CALL_L64(str) "call _" str "\n" +#define CALL_L64(str) "call _" str "\n" #else -# define CALL_L64(str) "call " str "@PLT\n" +#define CALL_L64(str) "call " str "@PLT\n" #endif /* ^__APPLE__ */ static const u8* main_payload_64 = @@ -737,9 +737,9 @@ static const u8* main_payload_64 = #ifdef __APPLE__ " .comm __afl_area_ptr, 8\n" -# ifndef COVERAGE_ONLY +#ifndef COVERAGE_ONLY " .comm __afl_prev_loc, 8\n" -# endif /* !COVERAGE_ONLY */ +#endif /* !COVERAGE_ONLY */ " .comm __afl_fork_pid, 4\n" " .comm __afl_temp, 4\n" " .comm __afl_setup_failure, 1\n" @@ -747,9 +747,9 @@ static const u8* main_payload_64 = #else " .lcomm __afl_area_ptr, 8\n" -# ifndef COVERAGE_ONLY +#ifndef COVERAGE_ONLY " .lcomm __afl_prev_loc, 8\n" -# endif /* !COVERAGE_ONLY */ +#endif /* !COVERAGE_ONLY */ " .lcomm __afl_fork_pid, 4\n" " .lcomm __afl_temp, 4\n" " .lcomm __afl_setup_failure, 1\n" |