Fix indentation

This commit is contained in:
Arun Prakash Jana 2018-11-29 20:40:49 +05:30
parent 9876948a46
commit ac1264e044
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 12 additions and 12 deletions

View File

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