Fix placement of local variable - variables must be declared before

any statements within a block.


git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@349 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
Brian S. Dean 2003-08-28 13:52:52 +00:00
parent 964a170f39
commit 3c507aee9e
1 changed files with 3 additions and 1 deletions

View File

@ -749,6 +749,9 @@ int main(int argc, char * argv [])
int set_cycles; /* value to set the erase-rewrite cycles to */
char * e; /* for strtol() error checking */
int quell_progress;
#if !defined(__CYGWIN__)
char * homedir;
#endif
progname = rindex(argv[0],'/');
if (progname)
@ -799,7 +802,6 @@ int main(int argc, char * argv [])
win_usr_config_set(usr_config);
#else
char * homedir;
strcpy(sys_config, CONFIG_DIR);
i = strlen(sys_config);