0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-01 13:18:58 +02:00

ircd::db: Fix macro condition.

This commit is contained in:
Jason Volk 2019-03-13 16:11:29 -07:00
parent eb7c7f07a7
commit 69f1fe7241

View file

@ -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 // 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. // 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 #define RB_DEBUG_DB_SEEK_ROW
#endif #endif