CPP statements start in column #1.

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@652 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
Joerg Wunsch 2006-09-08 19:46:45 +00:00
parent a41fdc3385
commit 76b13550bc
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2006-09-07 Joerg Wunsch <j@uriah.heep.sax.de>
* fileio.c: CPP statements start in column #1.
2006-09-07 Joerg Wunsch <j@uriah.heep.sax.de>
* avrdude.1: Describe how to disable the DWEN fuse.

View File

@ -911,7 +911,7 @@ int fileio(int op, char * filename, FILEFMT format,
if (rc < 0)
return -1;
#if defined(WIN32NATIVE)
#if defined(WIN32NATIVE)
/* Open Raw Binary format in binary mode on Windows.*/
if(format == FMT_RBIN)
{
@ -924,7 +924,7 @@ int fileio(int op, char * filename, FILEFMT format,
fio.mode = "wb";
}
}
#endif
#endif
/* point at the requested memory buffer */
buf = mem->buf;