diff options
author | vanhauser-thc <vh@thc.org> | 2024-04-19 15:45:00 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-04-19 15:45:00 +0200 |
commit | 476aca5b67f2926f0cdc7c50e9669e68cad9a851 (patch) | |
tree | 9687b6193bf73f6107698dfad6775d8aef8a224f /src/afl-cc.c | |
parent | 96bf0f8323581d26d6cc3b98eb39e196f31e16e0 (diff) | |
download | afl++-476aca5b67f2926f0cdc7c50e9669e68cad9a851.tar.gz |
nits
Diffstat (limited to 'src/afl-cc.c')
-rw-r--r-- | src/afl-cc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/afl-cc.c b/src/afl-cc.c index 57089ae0..202e8145 100644 --- a/src/afl-cc.c +++ b/src/afl-cc.c @@ -2490,10 +2490,10 @@ void add_assembler(aflcc_state_t *aflcc) { u8 *slash = strrchr(afl_as, '/'); if (slash) *slash = 0; - // Search for 'as' may be unreliable in some cases (see #2058) - // so use 'afl-as' instead, because 'as' is usually a symbolic link, - // or can be a renamed copy of 'afl-as' created in the same dir. - // Now we should verify if the compiler can find the 'as' we need. + // Search for 'as' may be unreliable in some cases (see #2058) + // so use 'afl-as' instead, because 'as' is usually a symbolic link, + // or can be a renamed copy of 'afl-as' created in the same dir. + // Now we should verify if the compiler can find the 'as' we need. #define AFL_AS_ERR "(should be a symlink or copy of 'afl-as')" |