[tor-commits] [tor/master] Use #warning instead of #warn: one is C and one isn't.

teor at torproject.org teor at torproject.org
Thu Oct 24 00:01:21 UTC 2019


commit 9871fcbcd9e2c729c46570d6794d3ddcf37aeeb6
Author: Nick Mathewson <nickm at torproject.org>
Date:   Wed Oct 9 09:37:21 2019 -0400

    Use #warning instead of #warn: one is C and one isn't.
---
 src/lib/log/log.c         | 2 +-
 src/lib/malloc/map_anon.c | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib/log/log.c b/src/lib/log/log.c
index 56f016eae..012e25193 100644
--- a/src/lib/log/log.c
+++ b/src/lib/log/log.c
@@ -526,7 +526,7 @@ logfile_deliver(logfile_t *lf, const char *buf, size_t msg_len,
      * pass them, and some very old ones do not detect overflow so well.
      * Regrettably, they call their maximum line length MAXLINE. */
 #if MAXLINE < 64
-#warn "MAXLINE is a very low number; it might not be from syslog.h after all"
+#warning "MAXLINE is a very low number; it might not be from syslog.h."
 #endif
     char *m = msg_after_prefix;
     if (msg_len >= MAXLINE)
diff --git a/src/lib/malloc/map_anon.c b/src/lib/malloc/map_anon.c
index 0f6a4150c..4e38cb642 100644
--- a/src/lib/malloc/map_anon.c
+++ b/src/lib/malloc/map_anon.c
@@ -75,8 +75,8 @@
 #endif /* defined(HAVE_MINHERIT) || ... */
 
 #if defined(HAVE_MINHERIT) && !defined(FLAG_ZERO) && !defined(FLAG_NOINHERIT)
-#warn "minherit() is defined, but we couldn't find the right flag for it."
-#warn "This is probably a bug in Tor's support for this platform."
+#warning "minherit() is defined, but we couldn't find the right flag for it."
+#warning "This is probably a bug in Tor's support for this platform."
 #endif
 
 /**





More information about the tor-commits mailing list