aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/lemon/lemon.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/lemon/lemon.c b/tools/lemon/lemon.c
index ce4e364ba5..4a55f00661 100644
--- a/tools/lemon/lemon.c
+++ b/tools/lemon/lemon.c
@@ -1627,7 +1627,7 @@ static void stats_line(const char *zLabel, int iValue){
}
/* The main program. Parse the command line and do it... */
-int main(int argc, char **argv)
+ int main(int argc, char **argv)
{
static int version = 0;
static int rpflag = 0;
@@ -1639,6 +1639,8 @@ int main(int argc, char **argv)
static int nolinenosflag = 0;
static int noResort = 0;
+ (void) argc; /* Mark unused, similar to Q_UNUSED */
+
static struct s_options options[] = {
{OPT_FLAG, "b", (char*)&basisflag, "Print only the basis in report."},
{OPT_FLAG, "c", (char*)&compress, "Don't compress the action table."},