mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
test: fix whitespace/indentation in symbol-test
Not of much consequence, but makes it nicer to do further edits.
This commit is contained in:
parent
acd66cdec0
commit
1008fc45da
1 changed files with 18 additions and 16 deletions
|
@ -3,23 +3,25 @@
|
|||
#include <xapian.h>
|
||||
#include <notmuch.h>
|
||||
|
||||
int main (int argc, char** argv)
|
||||
{
|
||||
notmuch_database_t *notmuch;
|
||||
char *message = NULL;
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
notmuch_database_t *notmuch;
|
||||
char *message = NULL;
|
||||
if (notmuch_database_open_verbose (argv[1], NOTMUCH_DATABASE_MODE_READ_ONLY,
|
||||
¬much, &message)) {
|
||||
if (message) {
|
||||
fputs (message, stderr);
|
||||
free (message);
|
||||
}
|
||||
}
|
||||
|
||||
if (notmuch_database_open_verbose (argv[1], NOTMUCH_DATABASE_MODE_READ_ONLY, ¬much, &message))
|
||||
if (message) {
|
||||
fputs (message, stderr);
|
||||
free (message);
|
||||
}
|
||||
try {
|
||||
(void) new Xapian::WritableDatabase (argv[2], Xapian::DB_OPEN);
|
||||
} catch (const Xapian::Error &error) {
|
||||
printf("caught %s\n", error.get_msg().c_str());
|
||||
return 0;
|
||||
}
|
||||
|
||||
try {
|
||||
(void) new Xapian::WritableDatabase(argv[2], Xapian::DB_OPEN);
|
||||
} catch (const Xapian::Error &error) {
|
||||
printf("caught %s\n", error.get_msg().c_str());
|
||||
return 0;
|
||||
}
|
||||
|
||||
return 1;
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue