From: David Bremner Date: Sat, 1 Jan 2022 12:47:16 +0000 (-0400) Subject: test: fix deprecation warning in symbol-test X-Git-Tag: 0.35_rc0~40 X-Git-Url: https://git.cworth.org/git?p=notmuch;a=commitdiff_plain;h=78e6cf12c05222c324110aa1eb9df9d99baa91a1 test: fix deprecation warning in symbol-test Reduce the amount of noise in the build log. --- diff --git a/test/symbol-test.cc b/test/symbol-test.cc index 9d73a571..9e956ddf 100644 --- a/test/symbol-test.cc +++ b/test/symbol-test.cc @@ -12,8 +12,10 @@ main (int argc, char **argv) if (argc != 3) return 1; - if (notmuch_database_open_verbose (argv[1], NOTMUCH_DATABASE_MODE_READ_ONLY, - ¬much, &message)) { + if (notmuch_database_open_with_config (argv[1], NOTMUCH_DATABASE_MODE_READ_ONLY, + "", + NULL, + ¬much, &message)) { if (message) { fputs (message, stderr); free (message);