=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: xcopy: Fix indentation of a break ( coverity).

Alexandre Julliard julliard at winehq.org
Thu Nov 8 15:39:55 CST 2012


Module: wine
Branch: master
Commit: 69f2ac0d52df2930da8f89ea0bda005e73b8653a
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=69f2ac0d52df2930da8f89ea0bda005e73b8653a

Author: André Hentschel <nerv at dawncrow.de>
Date:   Wed Nov  7 23:19:27 2012 +0100

xcopy: Fix indentation of a break (coverity).

---

 programs/xcopy/xcopy.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/programs/xcopy/xcopy.c b/programs/xcopy/xcopy.c
index ffd2c56..7a68831 100644
--- a/programs/xcopy/xcopy.c
+++ b/programs/xcopy/xcopy.c
@@ -821,7 +821,8 @@ static int XCOPY_ParseCommandLine(WCHAR *suppliedsource,
                       break;
 
             case '-': if (toupper(word[2])=='Y')
-                          flags &= ~OPT_NOPROMPT; break;
+                          flags &= ~OPT_NOPROMPT;
+                      break;
             case '?': XCOPY_wprintf(XCOPY_LoadMessage(STRING_HELP));
                       rc = RC_HELP;
                       goto out;




More information about the wine-cvs mailing list