Fix clang warning

This commit is contained in:
Arun Prakash Jana 2019-03-03 00:28:53 +05:30
parent 7811518903
commit 36cd5b72a5
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 14 additions and 11 deletions

View File

@ -1205,6 +1205,18 @@ static bool xrm(char *path)
return TRUE;
}
static void archive_selection(const char *archive, const char *curpath)
{
snprintf(g_buf, CMD_LEN_MAX,
#ifdef __linux__
"xargs -0 -a %s %s %s",
#else
"cat %s | xargs -0 -o %s %s",
#endif
g_cppath, utils[APACK], archive);
spawn("sh", "-c", g_buf, curpath, F_NORMAL | F_SIGINT);
}
/*
* Returns:
* FALSE - a message is shown
@ -3658,17 +3670,8 @@ nochange:
goto nochange;
}
if (r == 's') {
snprintf(g_buf, CMD_LEN_MAX,
#ifdef __linux__
"xargs -0 -a %s %s %s",
#else
"cat %s | xargs -0 -o %s %s",
#endif
g_cppath, utils[APACK], tmp);
spawn("sh", "-c", g_buf, path, F_NORMAL | F_SIGINT);
} else
spawn(utils[APACK], tmp, dents[cur].name, path, F_NORMAL);
r == 's' ? archive_selection(tmp, path)
: spawn(utils[APACK], tmp, dents[cur].name, path, F_NORMAL);
break;
case SEL_OPENWITH:
dir = NULL;