Whitespaces cleanup.

This commit is contained in:
Amadeusz Żołnowski 2011-11-25 16:34:48 +01:00 committed by David Bremner
parent 071456e5e6
commit 0da10aa1bc

View file

@ -1,16 +1,17 @@
#include <stdio.h> #include <stdio.h>
#include <xapian.h> #include <xapian.h>
#include <notmuch.h> #include <notmuch.h>
int main (){
(void)notmuch_database_open ("fakedb",
NOTMUCH_DATABASE_MODE_READ_ONLY);
try{ int main() {
(void)new Xapian::WritableDatabase ("./nonexistant", Xapian::DB_OPEN); (void) notmuch_database_open("fakedb", NOTMUCH_DATABASE_MODE_READ_ONLY);
try {
(void) new Xapian::WritableDatabase("./nonexistant", Xapian::DB_OPEN);
} catch (const Xapian::Error &error) { } catch (const Xapian::Error &error) {
printf("caught %s\n",error.get_msg().c_str()); printf("caught %s\n", error.get_msg().c_str());
return 0; return 0;
} }
return 1; return 1;
} }