]> git.notmuchmail.org Git - notmuch/blobdiff - test/notmuch-test.h
test/protected-headers: Add tests for S/MIME protected headers
[notmuch] / test / notmuch-test.h
index 45d03d67540a795540da7287e1212d460b6289af..df852da9de552fd35dd7305018d001763e6aa7c3 100644 (file)
@@ -4,13 +4,13 @@
 #include <notmuch.h>
 
 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