Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(759)

Unified Diff: util/test/scoped_temp_dir_posix.cc

Issue 837123005: win: Add implementation of ScopedTempDir (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: x instead of u Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | util/test/scoped_temp_dir_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | util/test/scoped_temp_dir_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698