BUGFIX: Redundant parameter to eprint.

This commit is contained in:
Cas Cremers 2010-11-10 23:15:52 +01:00
parent 2557d308bb
commit 03a8a1b6e7

View File

@ -1295,7 +1295,7 @@ switcher (const int process, int index, int commandline)
printf ("Scyther comes with ABSOLUTELY NO WARRANTY.\n"); printf ("Scyther comes with ABSOLUTELY NO WARRANTY.\n");
printf ("This is free software, and you are welcome\n"); printf ("This is free software, and you are welcome\n");
printf ("to redistribute it under certain conditions.\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); exit (0);
} }
} }