diff options
Diffstat (limited to 'src/os_linux.cc')
| -rw-r--r-- | src/os_linux.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_linux.cc b/src/os_linux.cc index 8f5f56a7ea..6d84b51a04 100644 --- a/src/os_linux.cc +++ b/src/os_linux.cc @@ -30,7 +30,7 @@ File* OS::FileFromFd(const char* name, int fd) { bool OS::FileExists(const char* name) { struct stat st; if (stat(name, &st) == 0) { - return S_ISREG(st.st_mode); // TODO Deal with symlinks? + return S_ISREG(st.st_mode); // TODO: Deal with symlinks? } else { return false; } |