From ac1264e04475da02e484db5fcc688eeacdd18ff2 Mon Sep 17 00:00:00 2001
From: Arun Prakash Jana <engineerarun@gmail.com>
Date: Thu, 29 Nov 2018 20:40:49 +0530
Subject: [PATCH] Fix indentation

---
 src/nnn.c | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/nnn.c b/src/nnn.c
index 3a920693..89f2f0fd 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -3113,28 +3113,28 @@ nochange:
 			if (sel == SEL_CP) {
 				snprintf(g_buf, MAX_CMD_LEN,
 #ifdef __linux__
-                         "xargs -0 -a %s -%c src cp -iRp src .",
+					 "xargs -0 -a %s -%c src cp -iRp src .",
 #else
-                         "cat %s | xargs -0 -o -%c src cp -iRp src .",
+					 "cat %s | xargs -0 -o -%c src cp -iRp src .",
 #endif
-                         g_cppath, REPLACE_STR);
-            } else if (sel == SEL_MV) {
+					 g_cppath, REPLACE_STR);
+			} else if (sel == SEL_MV) {
 				snprintf(g_buf, MAX_CMD_LEN,
 #ifdef __linux__
-                         "xargs -0 -a %s -%c src mv -i src .",
+					 "xargs -0 -a %s -%c src mv -i src .",
 #else
-                         "cat %s | xargs -0 -o -%c src mv -i src .",
+					 "cat %s | xargs -0 -o -%c src mv -i src .",
 #endif
-                         g_cppath, REPLACE_STR);
-            } else { /* SEL_RMMUL */
+					 g_cppath, REPLACE_STR);
+			} else { /* SEL_RMMUL */
 				snprintf(g_buf, MAX_CMD_LEN,
 #ifdef __linux__
-                         "xargs -0 -a %s rm -ir",
+					 "xargs -0 -a %s rm -ir",
 #else
-                         "cat %s | xargs -0 -o rm -ir",
+					 "cat %s | xargs -0 -o rm -ir",
 #endif
-                         g_cppath);
-            }
+					 g_cppath);
+			}
 
 			spawn("sh", "-c", g_buf, path, F_NORMAL | F_SIGINT);
 
-- 
2.51.0