aboutsummaryrefslogtreecommitdiffstats
path: root/alc/helpers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alc/helpers.cpp')
-rw-r--r--alc/helpers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/helpers.cpp b/alc/helpers.cpp
index 2174de05..d1401c3c 100644
--- a/alc/helpers.cpp
+++ b/alc/helpers.cpp
@@ -516,7 +516,7 @@ static void DirectorySearch(const char *path, const char *ext, al::vector<std::s
str = path;
str += '\\';
str += wstr_to_utf8(fdata.cFileName);
- TRACE("Got result %s\n", str.c_str());
+ TRACE(" got %s\n", str.c_str());
} while(FindNextFileW(hdl, &fdata));
FindClose(hdl);
@@ -748,7 +748,7 @@ static void DirectorySearch(const char *path, const char *ext, al::vector<std::s
if(str.back() != '/')
str.push_back('/');
str += dirent->d_name;
- TRACE("Got result %s\n", str.c_str());
+ TRACE(" got %s\n", str.c_str());
}
closedir(dir);