X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=test%2Fnotmuch-test.h;h=df852da9de552fd35dd7305018d001763e6aa7c3;hp=45d03d67540a795540da7287e1212d460b6289af;hb=7c7cebffe6f05c8bbb07c3714fde08562444c72e;hpb=c3a683299d4c27d6eadaacf4fb516f73a6c69fc3 diff --git a/test/notmuch-test.h b/test/notmuch-test.h index 45d03d67..df852da9 100644 --- a/test/notmuch-test.h +++ b/test/notmuch-test.h @@ -4,13 +4,13 @@ #include inline static void -expect0(int line, notmuch_status_t ret) +expect0 (int line, notmuch_status_t ret) { - if (ret) { + if (ret) { fprintf (stderr, "line %d: %d\n", line, ret); exit (1); - } + } } -#define EXPECT0(v) expect0(__LINE__, v); +#define EXPECT0(v) expect0 (__LINE__, v); #endif