aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-11-29 20:40:49 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2018-11-29 20:40:49 +0530
commitac1264e04475da02e484db5fcc688eeacdd18ff2 (patch)
treed263d1acc33019a3d561cafdb0bff7645dc6e0aa
parent9876948a46fb9eb3c2a848c740c3b0e3a73f4a31 (diff)
downloadnnn-ac1264e04475da02e484db5fcc688eeacdd18ff2.tar.gz
Fix indentation
-rw-r--r--src/nnn.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 3a92069..89f2f0f 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);