Browse Source

Move declaration of LD_NO_MESG to make conflict more apparent.

Nick Mathewson 4 years ago
parent
commit
d972f29d8d
1 changed files with 5 additions and 5 deletions
  1. 5 5
      src/lib/log/log.h

+ 5 - 5
src/lib/log/log.h

@@ -118,6 +118,11 @@
 #define LD_MESG      (1u<<29)
 #define N_LOGGING_DOMAINS 30
 
+#ifdef TOR_UNIT_TESTS
+/** This log message should not be intercepted by mock_saving_logv */
+#define LD_NO_MOCK (1u<<29)
+#endif
+
 /** This log message is not safe to send to a callback-based logger
  * immediately.  Used as a flag, not a log domain. */
 #define LD_NOCB (1u<<31)
@@ -125,11 +130,6 @@
  * would. Used as a flag, not a log domain. */
 #define LD_NOFUNCNAME (1u<<30)
 
-#ifdef TOR_UNIT_TESTS
-/** This log message should not be intercepted by mock_saving_logv */
-#define LD_NO_MOCK (1u<<29)
-#endif
-
 /** Mask of zero or more log domains, OR'd together. */
 typedef uint32_t log_domain_mask_t;