diff --git a/ChangeLog b/ChangeLog
index 8c68ff58..696c3e4c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/fileio.c b/fileio.c
index dc9389e9..0e3b18e1 100644
--- a/fileio.c
+++ b/fileio.c
@@ -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;