From 03a8a1b6e7245719d29689a2b0e00cf3dc163276 Mon Sep 17 00:00:00 2001 From: Cas Cremers Date: Wed, 10 Nov 2010 23:15:52 +0100 Subject: [PATCH] BUGFIX: Redundant parameter to eprint. --- src/switches.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switches.c b/src/switches.c index 4bf1aaf..c7884d2 100644 --- a/src/switches.c +++ b/src/switches.c @@ -1295,7 +1295,7 @@ switcher (const int process, int index, int commandline) printf ("Scyther comes with ABSOLUTELY NO WARRANTY.\n"); printf ("This is free software, and you are welcome\n"); printf ("to redistribute it under certain conditions.\n"); - printf ("Use the `--license' option for details.\n", progname); + printf ("Use the `--license' option for details.\n"); exit (0); } }