From 78e6cf12c05222c324110aa1eb9df9d99baa91a1 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Sat, 1 Jan 2022 08:47:16 -0400 Subject: [PATCH] test: fix deprecation warning in symbol-test Reduce the amount of noise in the build log. --- test/symbol-test.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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); -- 2.43.0