diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-02-06 16:19:49 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-02-06 16:25:56 -0500 |
commit | 7036ed34715678d64a9bfee99db69830f44d8912 (patch) | |
tree | 5424eb262361987ca4281312a5324b79511c5833 /src/lib/malloc | |
parent | 6076adde256c7480b569f928c28d14ee637fbd6e (diff) | |
download | tor-7036ed34715678d64a9bfee99db69830f44d8912.tar.gz tor-7036ed34715678d64a9bfee99db69830f44d8912.zip |
Fix a couple more long warning lines
These are not a problem with 2-space indentation, but cocci will
start getting confused when clang-format wraps them with 4-space
indentation.
Diffstat (limited to 'src/lib/malloc')
-rw-r--r-- | src/lib/malloc/map_anon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/malloc/map_anon.c b/src/lib/malloc/map_anon.c index 1926b61f07..628966012a 100644 --- a/src/lib/malloc/map_anon.c +++ b/src/lib/malloc/map_anon.c @@ -78,7 +78,7 @@ #endif /* defined(HAVE_MINHERIT) || ... */ #if defined(HAVE_MINHERIT) && !defined(FLAG_ZERO) && !defined(FLAG_NOINHERIT) -#warning "minherit() is defined, but we couldn't find the right flag for it." +#warning "minherit() is defined, but FLAG_ZERO/NOINHERIT are not." #warning "This is probably a bug in Tor's support for this platform." #endif |