From 1c3a8e0898be614b5183f0ae626386f7746e7e07 Mon Sep 17 00:00:00 2001 From: Tomi Ollila Date: Tue, 27 Sep 2016 18:06:52 +0300 Subject: [PATCH] lib/database.cc: fix misleading indentation Found by gcc 6.1.1 -Wmisleading-indentation option (set by -Wall). --- lib/database.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/database.cc b/lib/database.cc index 392e8b28..4bfae019 100644 --- a/lib/database.cc +++ b/lib/database.cc @@ -1685,8 +1685,8 @@ notmuch_database_begin_atomic (notmuch_database_t *notmuch) notmuch->atomic_nesting > 0) goto DONE; - if (notmuch_database_needs_upgrade(notmuch)) - return NOTMUCH_STATUS_UPGRADE_REQUIRED; + if (notmuch_database_needs_upgrade (notmuch)) + return NOTMUCH_STATUS_UPGRADE_REQUIRED; try { (static_cast (notmuch->xapian_db))->begin_transaction (false); -- 2.43.0