mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 10:28:09 +01:00
test: fix deprecation warning in symbol-test
Reduce the amount of noise in the build log.
This commit is contained in:
parent
6472dbf4b7
commit
78e6cf12c0
1 changed files with 4 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue