From cc3756aabed5d6e50a481a5d38a5859754206be2 Mon Sep 17 00:00:00 2001 From: Dmitry Kurochkin Date: Sat, 28 Jan 2012 12:02:33 +0400 Subject: [PATCH] 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. --- notmuch-tag.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notmuch-tag.c b/notmuch-tag.c index 44fd61f6..36b9b092 100644 --- a/notmuch-tag.c +++ b/notmuch-tag.c @@ -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; -- 2.43.0