From: Tomi Ollila Date: Tue, 27 Sep 2016 15:06:52 +0000 (+0300) Subject: lib/database.cc: fix misleading indentation X-Git-Tag: 0.23_rc1~6 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=1c3a8e0898be614b5183f0ae626386f7746e7e07;ds=sidebyside lib/database.cc: fix misleading indentation Found by gcc 6.1.1 -Wmisleading-indentation option (set by -Wall). --- 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);