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:
Axel Wachtler
2014-07-11 16:55:14 +00:00
parent 960a7bc9d0
commit 8a387a198f
2 changed files with 5 additions and 1 deletions

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);
}