diff options
author | ted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-08-12 01:21:58 +0000 |
---|---|---|
committer | ted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-08-12 01:21:58 +0000 |
commit | 26ff18d10158071b4f1a2ee816195544b3e7272c (patch) | |
tree | 7aec4e8866e71a159ce130d897096c1daefd03a7 /src | |
parent | Change exception_handler_test.cc to use Google Test (diff) | |
download | breakpad-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.h | 2 |
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); |