Uniform when to use args or argv

This commit is contained in:
Cheng Zhao 2016-06-02 20:41:59 +09:00
parent 0d066de53e
commit 9a08cbce27
4 changed files with 24 additions and 23 deletions

View file

@ -68,7 +68,7 @@ int LaunchProgram(const StringVector& relauncher_args,
const StringVector& argv) {
base::LaunchOptions options;
base::Process process =
base::LaunchProcess(base::JoinString(args, L" "), options);
base::LaunchProcess(base::JoinString(argv, L" "), options);
return process.IsValid() ? 0 : 1;
}