aboutsummaryrefslogtreecommitdiff
path: root/src/client/mac/tests/auto_tempdir.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/mac/tests/auto_tempdir.h')
-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);