diff options
| author | David Bremner <david@tethera.net> | 2022-01-01 08:47:16 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2022-01-16 15:37:14 -0400 |
| commit | 78e6cf12c05222c324110aa1eb9df9d99baa91a1 (patch) | |
| tree | 94aa769654bbc295115e49236075b8135f4d697f /test | |
| parent | 6472dbf4b7fdec3bd59d7622ef477a035e34c67a (diff) | |
test: fix deprecation warning in symbol-test
Reduce the amount of noise in the build log.
Diffstat (limited to 'test')
| -rw-r--r-- | test/symbol-test.cc | 6 |
1 files 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); |
