changeset 2529:688b98888f5f

(process_mode): Add trivial comment to indicate that 'a' drops through to 'w' case
author jlarmour
date Mon, 18 Aug 2008 14:14:22 +0000
parents a2fb80f5315f
children 54ab5a936365
files packages/language/c/libc/stdio/current/src/common/fopen.cxx
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/packages/language/c/libc/stdio/current/src/common/fopen.cxx
+++ b/packages/language/c/libc/stdio/current/src/common/fopen.cxx
@@ -92,6 +92,7 @@ process_mode( const char *mode, Cyg_Stdi
 
     case 'a':
         *append = true;
+        /* DROPTHROUGH */
     case 'w':
         *rw = Cyg_StdioStream::CYG_STREAM_WRITE;
         break;