Parcourir la source

Fix indentation

master
Arun Prakash Jana il y a 6 ans
Parent
révision
ac1264e044
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: A75979F35C080412
1 fichiers modifiés avec 12 ajouts et 12 suppressions
  1. +12
    -12
      src/nnn.c

+ 12
- 12
src/nnn.c Voir le fichier

@@ -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);




||||||
x
 
000:0
Chargement…
Annuler
Enregistrer