This is the mail archive of the ecos-patches@sourceware.org mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Dumb fflush typo fix


Index: ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/language/c/libc/stdio/current/ChangeLog,v
retrieving revision 1.44
diff -u -5 -p -r1.44 ChangeLog
--- ChangeLog	15 Jan 2009 03:33:52 -0000	1.44
+++ ChangeLog	18 Jan 2009 03:44:07 -0000
@@ -1,5 +1,10 @@
+2009-01-18  Jonathan Larmour  <jifl@eCosCentric.com>
+
+	* src/common/fflush.cxx (cyg_libc_stdio_flush_all_but): Fix silly
+	typo in last change.
+
 2009-01-15  Jonathan Larmour  <jifl@eCosCentric.com>
 
 	* src/common/fflush.cxx (cyg_libc_stdio_flush_all_but): Ensure the
 	files table can't change. Thanks to Xiaochen Zhou for the detective
 	work.
Index: src/common/fflush.cxx
===================================================================
RCS file: /cvs/ecos/ecos/packages/language/c/libc/stdio/current/src/common/fflush.cxx,v
retrieving revision 1.9
diff -u -5 -p -r1.9 fflush.cxx
--- src/common/fflush.cxx	16 Jan 2009 00:58:49 -0000	1.9
+++ src/common/fflush.cxx	18 Jan 2009 03:44:07 -0000
@@ -123,11 +123,11 @@ cyg_libc_stdio_flush_all_but( Cyg_StdioS
                     }
                 } // else
                 // We can unlock and relock every loop as we only care
                 // about flushing streams that were open prior to this
                 // call. Any new streams can be ignored.
-                Cyg_libc_stdio_files::unlock()
+                Cyg_libc_stdio_files::unlock();
             } // if
         } // for
     } // do
     while(loop_again && !err);
     


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]