diff options
author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-02-17 00:51:13 +0100 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-17 20:45:34 +0200 |
commit | 088f2f4f6545ebc2ee01945938a40ae5c87ad27a (patch) | |
tree | d5638d04461f3a549f398ead86076069bced9ff9 /indra/llfilesystem/lldir_linux.cpp | |
parent | 17cb28ec2b4f290f7492eb9c765be114b0cd435f (diff) |
More BOOL to bool replacements primarily in llappearance and llxml
Diffstat (limited to 'indra/llfilesystem/lldir_linux.cpp')
-rw-r--r-- | indra/llfilesystem/lldir_linux.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llfilesystem/lldir_linux.cpp b/indra/llfilesystem/lldir_linux.cpp index 80ad05345a..44e24a1625 100644 --- a/indra/llfilesystem/lldir_linux.cpp +++ b/indra/llfilesystem/lldir_linux.cpp @@ -247,11 +247,11 @@ bool LLDir_Linux::fileExists(const std::string &filename) const int res = stat(filename.c_str(), &stat_data); if (!res) { - return TRUE; + return true; } else { - return FALSE; + return false; } } |