VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Core/Unix
diff options
context:
space:
mode:
Diffstat (limited to 'src/Core/Unix')
-rw-r--r--src/Core/Unix/CoreUnix.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Core/Unix/CoreUnix.cpp b/src/Core/Unix/CoreUnix.cpp
index a2b06f3d..0b248fb9 100644
--- a/src/Core/Unix/CoreUnix.cpp
+++ b/src/Core/Unix/CoreUnix.cpp
@@ -22,6 +22,9 @@
#include "Driver/Fuse/FuseService.h"
#include "Volume/VolumePasswordCache.h"
+template<typename T>
+inline void ignore_result(const T & /* unused result */) {}
+
namespace VeraCrypt
{
#ifdef TC_LINUX
@@ -691,7 +694,7 @@ namespace VeraCrypt
{
try
{
- chown (mountPoint.c_str(), GetRealUserId(), GetRealGroupId());
+ ignore_result(chown (mountPoint.c_str(), GetRealUserId(), GetRealGroupId()));
} catch (...) { }
}
}