fixed bug from -r1305, patch #8463

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1327 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
awachtler 2014-07-11 16:55:14 +00:00
parent a3c9671526
commit c70575685f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-07-11 Axel Wachtler <axel@uracoli.de>
* avrftdi.c: rollback to vfprintf, fixed error from -r1305, (patch #8463)
2014-06-23 Rene Liebscher <R.Liebscher@gmx.de>
* linux_ppdev.h: added missing msg level for avrdude_message

View File

@ -152,7 +152,7 @@ void avrftdi_log(int level, const char * func, int line,
avrdude_message(MSG_INFO, "%s(%d): ", func, line);
}
va_start(ap, fmt);
avrdude_message(MSG_INFO, fmt, ap);
vfprintf(stderr, fmt, ap);
va_end(ap);
}