Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 76886bfd authored by GARNIER Laurent's avatar GARNIER Laurent
Browse files

Merge branch '124-remove-various-warnings' into '63-add-package-management'

Remove warning

See merge request !275
parents ee379a4b 7c8199e6
Branches
Tags
3 merge requests!289Release 3.6.0,!284Add package management,!275Remove warning
...@@ -142,7 +142,7 @@ bool CEntryEnumeratorLinux::enumerate(const char* sWildCard, bool bRecursive) ...@@ -142,7 +142,7 @@ bool CEntryEnumeratorLinux::enumerate(const char* sWildCard, bool bRecursive)
att.m_IsArchive = false; att.m_IsArchive = false;
att.m_IsReadOnly = s.st_mode&S_IWUSR ? false : true; att.m_IsReadOnly = s.st_mode&S_IWUSR ? false : true;
att.m_IsHidden = false; att.m_IsHidden = false;
att.m_IsSystem = S_ISBLK(s.st_mode)|S_ISFIFO(s.st_mode)|S_ISSOCK(s.st_mode)|S_ISCHR(s.st_mode) ? true : false; att.m_IsSystem = (S_ISBLK(s.st_mode)|S_ISFIFO(s.st_mode)|S_ISSOCK(s.st_mode)|S_ISCHR(s.st_mode)) ? true : false;
att.m_IsExecutable = s.st_mode&S_IXUSR ? true : false; att.m_IsExecutable = s.st_mode&S_IXUSR ? true : false;
att.m_Size=s.st_size; att.m_Size=s.st_size;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment