Change program URL to github.com

This commit is contained in:
Marius Greuel 2021-12-28 11:13:52 +01:00
parent 5380356895
commit 255ce9eb16
1 changed files with 5 additions and 1 deletions

View File

@ -132,7 +132,7 @@ static void usage(void)
" -q Quell progress output. -q -q for less.\n"
" -l logfile Use logfile rather than stderr for diagnostics.\n"
" -? Display this usage.\n"
"\navrdude version %s, URL: <https://github.com/avrdudes/avrdude>\n"
"\navrdude version %s, URL: <https://github.com/mariusgreuel/avrdude>\n"
,progname, version);
}
@ -366,6 +366,10 @@ int main(int argc, char * argv [])
char * homedir;
#endif
#ifdef _MSC_VER
_set_printf_count_output(1);
#endif
/*
* Set line buffering for file descriptors so we see stdout and stderr
* properly interleaved.