diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-01-10 10:36:51 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-02-06 14:54:04 -0500 |
commit | 60f01da78eaab9d036ac4af0d6bea27eb210c7cb (patch) | |
tree | 40ad9f0d01e8e46d825eb3d5e8de760daf8c2db8 /src/lib/memarea | |
parent | e9b663beaf153359033d78934cdf8f3d8bb9f2d9 (diff) | |
download | tor-60f01da78eaab9d036ac4af0d6bea27eb210c7cb.tar.gz tor-60f01da78eaab9d036ac4af0d6bea27eb210c7cb.zip |
Use smaller CPP error messages
Clang-format wants to split these messages across multiple lines,
which confuses the heck out of coccinelle.
Diffstat (limited to 'src/lib/memarea')
-rw-r--r-- | src/lib/memarea/memarea.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/memarea/memarea.c b/src/lib/memarea/memarea.c index d677c364a4..4d26c20eeb 100644 --- a/src/lib/memarea/memarea.c +++ b/src/lib/memarea/memarea.c @@ -39,7 +39,7 @@ #elif MEMAREA_ALIGN == 8 #define MEMAREA_ALIGN_MASK ((uintptr_t)7) #else -#error "void* is neither 4 nor 8 bytes long. I don't know how to align stuff." +#error "void* is neither 4 nor 8 bytes long." #endif /* MEMAREA_ALIGN == 4 || ... */ #if defined(__GNUC__) && defined(FLEXIBLE_ARRAY_MEMBER) |