Commit 5f26e4bd 5f26e4bde48fa6a2dbb4eaac08ac5fa6ded009b3 by Sergey Poznyakoff

Fixed indentation.

1 parent 64a86669
......@@ -354,13 +354,14 @@ main(int argc, char **argv)
mailbox_get_url (mbox, &url);
if (status == ENOENT)
goto cleanup1;
else {
fprintf (stderr, "could not open mailbox %s: %s\n",
url_to_string (url),
mu_errstring(status));
goto cleanup;
}
else
{
fprintf (stderr, "could not open mailbox %s: %s\n",
url_to_string (url),
mu_errstring(status));
goto cleanup;
}
}
if (! be_quiet)
......