mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-23 19:38:07 +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)
|
if (argc != 3)
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
if (notmuch_database_open_verbose (argv[1], NOTMUCH_DATABASE_MODE_READ_ONLY,
|
if (notmuch_database_open_with_config (argv[1], NOTMUCH_DATABASE_MODE_READ_ONLY,
|
||||||
¬much, &message)) {
|
"",
|
||||||
|
NULL,
|
||||||
|
¬much, &message)) {
|
||||||
if (message) {
|
if (message) {
|
||||||
fputs (message, stderr);
|
fputs (message, stderr);
|
||||||
free (message);
|
free (message);
|
||||||
|
|
Loading…
Reference in a new issue