summaryrefslogtreecommitdiffstats
path: root/base/file_util_posix.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/file_util_posix.cc')
-rw-r--r--base/file_util_posix.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/base/file_util_posix.cc b/base/file_util_posix.cc
index cdf7be9..579e79a 100644
--- a/base/file_util_posix.cc
+++ b/base/file_util_posix.cc
@@ -86,8 +86,8 @@ int CountFilesCreatedAfter(const FilePath& path,
DIR* dir = opendir(path.value().c_str());
if (dir) {
#if !defined(OS_LINUX) && !defined(OS_MACOSX) && !defined(OS_FREEBSD)
- #error Depending on the definition of struct dirent, additional space for \
- pathname may be needed
+ #error Port warning: depending on the definition of struct dirent, \
+ additional space for pathname may be needed
#endif
struct dirent ent_buf;
struct dirent* ent;
@@ -635,9 +635,10 @@ bool FileEnumerator::ReadDirectory(std::vector<DirectoryEntryInfo>* entries,
return false;
#if !defined(OS_LINUX) && !defined(OS_MACOSX) && !defined(OS_FREEBSD)
- #error Depending on the definition of struct dirent, additional space for \
- pathname may be needed
+ #error Port warning: depending on the definition of struct dirent, \
+ additional space for pathname may be needed
#endif
+
struct dirent dent_buf;
struct dirent* dent;
while (readdir_r(dir, &dent_buf, &dent) == 0 && dent) {