| Index: util/test/scoped_temp_dir_posix.cc
|
| diff --git a/util/test/scoped_temp_dir_posix.cc b/util/test/scoped_temp_dir_posix.cc
|
| index c8bb2a77cfe3a17c71844b8b90b53e88d24cf5ed..b7f13376ea458992e5100bfd56f7f477beb0d953 100644
|
| --- a/util/test/scoped_temp_dir_posix.cc
|
| +++ b/util/test/scoped_temp_dir_posix.cc
|
| @@ -27,9 +27,9 @@ namespace test {
|
|
|
| // static
|
| base::FilePath ScopedTempDir::CreateTemporaryDirectory() {
|
| - char dir_tempalate[] = "/tmp/com.googlecode.crashpad.test.XXXXXX";
|
| - PCHECK(mkdtemp(dir_tempalate)) << "mkdtemp " << dir_tempalate;
|
| - return base::FilePath(dir_tempalate);
|
| + char dir_template[] = "/tmp/com.googlecode.crashpad.test.XXXXXX";
|
| + PCHECK(mkdtemp(dir_template)) << "mkdtemp " << dir_template;
|
| + return base::FilePath(dir_template);
|
| }
|
|
|
| // static
|
|
|