aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-08-12 01:21:58 +0000
committerted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-08-12 01:21:58 +0000
commit26ff18d10158071b4f1a2ee816195544b3e7272c (patch)
tree7aec4e8866e71a159ce130d897096c1daefd03a7 /src
parentChange exception_handler_test.cc to use Google Test (diff)
downloadbreakpad-26ff18d10158071b4f1a2ee816195544b3e7272c.tar.xz
fix typo in previous commit
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@642 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src')
-rw-r--r--src/client/mac/tests/auto_tempdir.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/mac/tests/auto_tempdir.h b/src/client/mac/tests/auto_tempdir.h
index 3704ea98..b6473a5c 100644
--- a/src/client/mac/tests/auto_tempdir.h
+++ b/src/client/mac/tests/auto_tempdir.h
@@ -57,7 +57,7 @@ class AutoTempDir {
while ((entry = readdir(dir)) != NULL) {
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0)
continue;
- string entryPath = path + "/" + entry->d_name;
+ std::string entryPath = path + "/" + entry->d_name;
unlink(entryPath.c_str());
}
closedir(dir);