preprocessor: fix bug in debian compilation

time-shift
Houtan Bastani 2016-05-19 12:06:53 +02:00
parent 58eb60c95d
commit a5590f7917
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ main(int argc, char **argv)
cerr << "Incorrect syntax for params_derivs_order option" << endl;
usage();
}
params_derivs_order = stoi(string(argv[arg] + 20));
params_derivs_order = atoi(string(argv[arg] + 20).c_str());
}
else if (!strcmp(argv[arg], "onlyclearglobals"))
{