mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
tag: remove unused attribute from notmuch_tag_command() arguments
Argc and argv arguments are used in notmuch_tag_command() function. So unused attribute is not appropriate for them.
This commit is contained in:
parent
2c6710e3ba
commit
cc3756aabe
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ _optimize_tag_query (void *ctx, const char *orig_query_string, char *argv[],
|
|||
}
|
||||
|
||||
int
|
||||
notmuch_tag_command (void *ctx, unused (int argc), unused (char *argv[]))
|
||||
notmuch_tag_command (void *ctx, int argc, char *argv[])
|
||||
{
|
||||
int *add_tags, *remove_tags;
|
||||
int add_tags_count = 0;
|
||||
|
|
Loading…
Reference in a new issue