mirror of
https://github.com/yuzu-emu/breakpad
synced 2024-11-23 01:53:37 +00:00
fix typo in previous commit
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@642 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
44af96cd2d
commit
26ff18d101
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ class AutoTempDir {
|
||||||
while ((entry = readdir(dir)) != NULL) {
|
while ((entry = readdir(dir)) != NULL) {
|
||||||
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0)
|
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0)
|
||||||
continue;
|
continue;
|
||||||
string entryPath = path + "/" + entry->d_name;
|
std::string entryPath = path + "/" + entry->d_name;
|
||||||
unlink(entryPath.c_str());
|
unlink(entryPath.c_str());
|
||||||
}
|
}
|
||||||
closedir(dir);
|
closedir(dir);
|
||||||
|
|
Loading…
Reference in a new issue