aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch-tag.c
diff options
context:
space:
mode:
authorGravatar Dmitry Kurochkin <dmitry.kurochkin@gmail.com>2012-01-28 12:02:33 +0400
committerGravatar David Bremner <bremner@debian.org>2012-02-08 09:19:29 -0400
commitcc3756aabed5d6e50a481a5d38a5859754206be2 (patch)
tree1c5cf561688e89c33e7cd1dbf069ee67457309fe /notmuch-tag.c
parent2c6710e3ba22f5af6e5813dad8bee732e6c5d02c (diff)
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.
Diffstat (limited to 'notmuch-tag.c')
-rw-r--r--notmuch-tag.c2
1 files changed, 1 insertions, 1 deletions
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;