mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-27 21:43:29 +01:00
Linux: solve compilation error on OpenSUSE when linking against system wxWidgets. OpenSUSE enables STL in wxWidgets which causes the error because implicit casts are not available.
This commit is contained in:
parent
4fcf5c921c
commit
94ccaf1ab4
@ -132,7 +132,7 @@ namespace VeraCrypt
|
||||
}
|
||||
|
||||
{
|
||||
FilePath keyfilePath((const wchar_t*) keyfileName.GetFullPath());
|
||||
FilePath keyfilePath((const wchar_t*) keyfileName.GetFullPath().c_str());
|
||||
File keyfile;
|
||||
keyfile.Open (keyfilePath, File::CreateWrite);
|
||||
keyfile.Write (keyfileBuffer);
|
||||
|
Loading…
Reference in New Issue
Block a user