Module: wine Branch: master Commit: 69f2ac0d52df2930da8f89ea0bda005e73b8653a URL: http://source.winehq.org/git/wine.git/?a=commit;h=69f2ac0d52df2930da8f89ea0b...
Author: André Hentschel nerv@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;