diff options
author | kavsrf <kavsrf@gmail.com> | 2017-06-16 21:15:04 +0300 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-06-18 15:52:11 +0200 |
commit | ed149d5104f35ab52edd7579f2c956382e7d617f (patch) | |
tree | 670192176e3a5281999a4089bf771731371c6b43 /Include/Library | |
parent | 764556463ff132bd3a10d6c29e219bb10d523206 (diff) | |
download | VeraCrypt-DCS-ed149d5104f35ab52edd7579f2c956382e7d617f.tar.gz VeraCrypt-DCS-ed149d5104f35ab52edd7579f2c956382e7d617f.zip |
BML flags added
Diffstat (limited to 'Include/Library')
-rw-r--r-- | Include/Library/CommonLib.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Include/Library/CommonLib.h b/Include/Library/CommonLib.h index cd7e068..9a15afd 100644 --- a/Include/Library/CommonLib.h +++ b/Include/Library/CommonLib.h @@ -29,10 +29,10 @@ https://opensource.org/licenses/LGPL-3.0 //////////////////////////////////////////////////////////////////////////
extern UINTN gCELine;
#define CE(ex) gCELine = __LINE__; if(EFI_ERROR(res = ex)) goto err
- -#ifndef CSTATIC_ASSERT -#define CSTATIC_ASSERT(b, name) typedef int StaticAssertFailed##name[b ? 1 : -1]; -#endif +
+#ifndef CSTATIC_ASSERT
+#define CSTATIC_ASSERT(b, name) typedef int StaticAssertFailed##name[b ? 1 : -1];
+#endif
//////////////////////////////////////////////////////////////////////////
// defines
@@ -564,7 +564,7 @@ InitBml(); EFI_STATUS
BmlLock(
- IN BOOLEAN lock
+ IN UINT32 lock
);
|