[2/2] wcmd: Fix an indentation mistake in WCMD_parameter.

Dan Hipschman dsh at linux.ucla.edu
Fri May 30 20:10:51 CDT 2008


The indentation is pretty messed up here.  There is no clear winner between
use of tabs versus spaces, but I felt the more important issue is that the
"param[0]..." line was not confused as the body of the if above it.  Hence,
I've used the same indentation as the if so it will always line up.  The
file could use a run through expand, but it would still require this patch
to have the correct number of spaces.

---
 programs/cmd/batch.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/programs/cmd/batch.c b/programs/cmd/batch.c
index 3748f21..aec39bd 100644
--- a/programs/cmd/batch.c
+++ b/programs/cmd/batch.c
@@ -163,8 +163,8 @@ WCHAR *WCMD_parameter (WCHAR *s, int n, WCHAR **where) {
           return param;
         }
 	if (*s == '"') s++;
-          param[0] = '\0';
-          i++;
+	param[0] = '\0';
+	i++;
         p = param;
 	break;
       /* The code to handle bracketed parms is removed because it should no longer



More information about the wine-patches mailing list