From 69f1fe72411112a2223ee3205f6ab01f6972dbb9 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Wed, 13 Mar 2019 16:11:29 -0700 Subject: [PATCH] ircd::db: Fix macro condition. --- ircd/db.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd/db.cc b/ircd/db.cc index a8e4aa321..482743030 100644 --- a/ircd/db.cc +++ b/ircd/db.cc @@ -4174,7 +4174,7 @@ ircd::db::write(const row::delta *const &begin, // to only see a report of the row seek as a whole. If RB_DEBUG_DB_SEEK is // enabled that implies RB_DEBUG_DB_SEEK_ROW as well. // -#if !defined(RB_DEBUG_DB_SEEK_ROW) && defined(RB_DEBUG_DB_SEEK_ROW) +#if !defined(RB_DEBUG_DB_SEEK_ROW) && defined(RB_DEBUG_DB_SEEK) #define RB_DEBUG_DB_SEEK_ROW #endif