Commit 714148c5 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

Declare variable only if needed.

parent dda7f979
......@@ -280,7 +280,10 @@ int main(int argc,char *argv[])
{
extern char* optarg;
extern int optind;
int optc, opti = 0;
int optc;
#ifdef HAVE_GETOPT_LONG
int opti = 0;
#endif
int stdinc = 1;
int lose = 0;
int ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment