Submitted by Daniel Rozsnyo:
bug #40085: Typo fix in fuses report (for 6.1-svn-20130917) * main.c: Fix a typo. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1247 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
367ea3263a
commit
dbec4af8d9
|
@ -1,3 +1,9 @@
|
||||||
|
2013-09-22 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
Submitted by Daniel Rozsnyo:
|
||||||
|
bug #40085: Typo fix in fuses report (for 6.1-svn-20130917)
|
||||||
|
* main.c: Fix a typo.
|
||||||
|
|
||||||
2013-09-19 Hannes Weisbach <hannes_weisbach@gmx.net>
|
2013-09-19 Hannes Weisbach <hannes_weisbach@gmx.net>
|
||||||
|
|
||||||
task #12798: Please cleanup #ifdef notyet entries in avrftdi.c
|
task #12798: Please cleanup #ifdef notyet entries in avrftdi.c
|
||||||
|
|
1
NEWS
1
NEWS
|
@ -18,6 +18,7 @@ Current:
|
||||||
|
|
||||||
* Bugfixes
|
* Bugfixes
|
||||||
- bug #40055: AVRDUDE segfaults when writing eeprom
|
- bug #40055: AVRDUDE segfaults when writing eeprom
|
||||||
|
- bug #40085: Typo fix in fuses report (for 6.1-svn-20130917)
|
||||||
- patch #XXXX: xxx
|
- patch #XXXX: xxx
|
||||||
|
|
||||||
* Internals:
|
* Internals:
|
||||||
|
|
2
main.c
2
main.c
|
@ -1364,7 +1364,7 @@ int main(int argc, char * argv [])
|
||||||
if (quell_progress < 2) {
|
if (quell_progress < 2) {
|
||||||
fprintf(stderr, "%s: safemode: ", progname);
|
fprintf(stderr, "%s: safemode: ", progname);
|
||||||
if (failures == 0) {
|
if (failures == 0) {
|
||||||
fprintf(stderr, "Fuses OK (H:%02X, E:%02X, L:%02X)\n",
|
fprintf(stderr, "Fuses OK (E:%02X, H:%02X, L:%02X)\n",
|
||||||
safemode_efuse, safemode_hfuse, safemode_lfuse);
|
safemode_efuse, safemode_hfuse, safemode_lfuse);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in New Issue