increase number of arguments passable to apps

This commit is contained in:
tumbili 2015-06-03 18:58:58 +02:00 committed by Mark Charlebois
parent a77f637bc4
commit 4aa4038e27
1 changed files with 2 additions and 2 deletions

View File

@ -79,9 +79,9 @@ static void run_cmd(const vector<string> &appargs) {
static void process_line(string &line)
{
vector<string> appargs(5);
vector<string> appargs(8);
stringstream(line) >> appargs[0] >> appargs[1] >> appargs[2] >> appargs[3] >> appargs[4];
stringstream(line) >> appargs[0] >> appargs[1] >> appargs[2] >> appargs[3] >> appargs[4] >> appargs[5] >> appargs[6] >> appargs[7];
run_cmd(appargs);
}