From 26ff18d10158071b4f1a2ee816195544b3e7272c Mon Sep 17 00:00:00 2001 From: "ted.mielczarek@gmail.com" Date: Thu, 12 Aug 2010 01:21:58 +0000 Subject: fix typo in previous commit git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@642 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/client/mac/tests/auto_tempdir.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/client') 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); -- cgit v1.2.1