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:
Dmitry Kurochkin 2012-01-28 12:02:33 +04:00 committed by David Bremner
parent 2c6710e3ba
commit cc3756aabe

View file

@ -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;