mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 17:34:54 +01:00
lib/database.cc: fix misleading indentation
Found by gcc 6.1.1 -Wmisleading-indentation option (set by -Wall).
This commit is contained in:
parent
b844c3c506
commit
1c3a8e0898
1 changed files with 2 additions and 2 deletions
|
@ -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 <Xapian::WritableDatabase *> (notmuch->xapian_db))->begin_transaction (false);
|
||||
|
|
Loading…
Reference in a new issue