cmd: Fix silly local variables indentation that breaks diff -p.
diff --git a/programs/cmd/batch.c b/programs/cmd/batch.c
index bbc3f83..eb1bd09 100644
--- a/programs/cmd/batch.c
+++ b/programs/cmd/batch.c
@@ -45,12 +45,12 @@
 
 #define WCMD_BATCH_EXT_SIZE 5
 
-HANDLE h = INVALID_HANDLE_VALUE;
-char string[MAXSTRING];
-char extension_batch[][WCMD_BATCH_EXT_SIZE] = {".bat",".cmd"};
-char extension_exe[WCMD_BATCH_EXT_SIZE] = ".exe";
-unsigned int  i;
-BATCH_CONTEXT *prev_context;
+  HANDLE h = INVALID_HANDLE_VALUE;
+  char string[MAXSTRING];
+  char extension_batch[][WCMD_BATCH_EXT_SIZE] = {".bat",".cmd"};
+  char extension_exe[WCMD_BATCH_EXT_SIZE] = ".exe";
+  unsigned int  i;
+  BATCH_CONTEXT *prev_context;
 
   if (startLabel == NULL) {
     for(i=0; (i<(sizeof(extension_batch)/WCMD_BATCH_EXT_SIZE)) &&
@@ -143,9 +143,9 @@
 
 char *WCMD_parameter (char *s, int n, char **where) {
 
-int i = 0;
-static char param[MAX_PATH];
-char *p;
+  int i = 0;
+  static char param[MAX_PATH];
+  char *p;
 
   if (where != NULL) *where = NULL;
   p = param;
@@ -213,9 +213,9 @@
 
 char *WCMD_fgets (char *s, int n, HANDLE h) {
 
-DWORD bytes;
-BOOL status;
-char *p;
+  DWORD bytes;
+  BOOL status;
+  char *p;
 
   p = s;
   do {