You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2010/08/10 23:16:59 UTC

svn commit: r984212 - /subversion/trunk/subversion/svn/main.c

Author: hwright
Date: Tue Aug 10 21:16:57 2010
New Revision: 984212

URL: http://svn.apache.org/viewvc?rev=984212&view=rev
Log:
* subversion/svn/main.c
  (main): Future-proofing: add an explicit break in a case statement, even
    though it currently just fall through to the default 'break'.

Modified:
    subversion/trunk/subversion/svn/main.c

Modified: subversion/trunk/subversion/svn/main.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/main.c?rev=984212&r1=984211&r2=984212&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/main.c (original)
+++ subversion/trunk/subversion/svn/main.c Tue Aug 10 21:16:57 2010
@@ -1783,6 +1783,7 @@ main(int argc, const char *argv[])
         break;
       case opt_use_git_diff_format:
         opt_state.use_git_diff_format = TRUE;
+        break;
       default:
         /* Hmmm. Perhaps this would be a good place to squirrel away
            opts that commands like svn diff might need. Hmmm indeed. */