1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-12 03:18:26 -06:00

Linux: Fix gcc-6 compilation errors.

This commit is contained in:
Mounir IDRASSI
2016-05-13 21:53:50 +02:00
parent 723768137b
commit 942cf1635a
3 changed files with 7 additions and 7 deletions

View File

@@ -49,13 +49,13 @@ namespace VeraCrypt
strBuf.CopyFrom (res);
return string (reinterpret_cast <char *> (strBuf.Ptr()));
#else
static const char LanguageXml[] =
static byte LanguageXml[] =
{
# include "Common/Language.xml.h"
, 0
};
return string (LanguageXml);
return string ((const char*) LanguageXml);
#endif
}
@@ -68,13 +68,13 @@ namespace VeraCrypt
strBuf.CopyFrom (res);
return string (reinterpret_cast <char *> (strBuf.Ptr()));
#else
static const char License[] =
static byte License[] =
{
# include "License.txt.h"
, 0
};
return string (License);
return string ((const char*) License);
#endif
}