aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTristan Riehs <tristan.riehs@inria.fr>2025-11-14 20:15:46 +0100
committerTristan Riehs <tristan.riehs@inria.fr>2025-11-14 20:15:46 +0100
commite8378d575dd77cf1436ee147920b7c775ee3b7af (patch)
tree6a8e8fa4d74ed04ba34883c64ddbce20f3f70696 /src
parent72fbf9ff67b82d8576bdd2633e3227230ca83ad0 (diff)
Suppress annoying warnings
Diffstat (limited to 'src')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 2f85c44..955e990 100644
--- a/src/main.c
+++ b/src/main.c
@@ -422,8 +422,8 @@ static void ftag_query(int argc, char **argv)
ftag_query_usage();
exit(EXIT_FAILURE);
}
- char *after_date;
- char *before_date;
+ char *after_date __attribute__((unused));
+ char *before_date __attribute__((unused));
char **tags;
int tag_count = 0;
while (argc > 0) {