diff options
-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); |