X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=test%2Fnotmuch-test.h;h=df852da9de552fd35dd7305018d001763e6aa7c3;hb=757ed001aad27d3c5ee8828174778b71013e4afd;hp=45d03d67540a795540da7287e1212d460b6289af;hpb=c3a683299d4c27d6eadaacf4fb516f73a6c69fc3;p=notmuch 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