1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 02:58:02 -06:00

Linux/MacOSX: fix missing namespace in call to Cipher::IsHwSupportEnabled

This commit is contained in:
Mounir IDRASSI
2017-06-23 16:57:45 +02:00
parent 2be3b02002
commit 9efdf8ffca

View File

@@ -35,7 +35,7 @@ extern "C" int IsAesHwCpuSupported ()
state = g_hasAESNI ? true : false;
stateValid = true;
}
return state && Cipher::IsHwSupportEnabled();
return state && VeraCrypt::Cipher::IsHwSupportEnabled();
#else
return false;
#endif