From: Ondřej Surý Date: Tue, 14 Jan 2020 08:43:37 +0000 (+0100) Subject: Move the NO_SANITIZE attribute to a correct place (gcc is picky) X-Git-Tag: v9.15.8~10^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d1e3b1e10805e81b486b540de835af23ece779b;p=thirdparty%2Fbind9.git Move the NO_SANITIZE attribute to a correct place (gcc is picky) --- diff --git a/lib/isc/log.c b/lib/isc/log.c index cb6238562d2..65c56774a89 100644 --- a/lib/isc/log.c +++ b/lib/isc/log.c @@ -1448,8 +1448,8 @@ isc_log_open(isc_logchannel_t *channel) { return (result); } -bool -isc_log_wouldlog(isc_log_t *lctx, int level) ISC_NO_SANITIZE { +bool ISC_NO_SANITIZE +isc_log_wouldlog(isc_log_t *lctx, int level) { /* * Try to avoid locking the mutex for messages which can't * possibly be logged to any channels -- primarily debugging