VeraCrypt
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2019-09-22 23:26:56 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2019-09-23 00:12:27 +0200
commitf2422d9f6cd13b9d8eac20ab8dc93841e5b8f209 (patch)
tree7ef3f3a0f1478474351b1159a6efba5d8c63214d
parent398078c40e10baef0a4261e39b7e689f9e21f005 (diff)
downloadVeraCrypt-DCS-f2422d9f6cd13b9d8eac20ab8dc93841e5b8f209.tar.gz
VeraCrypt-DCS-f2422d9f6cd13b9d8eac20ab8dc93841e5b8f209.zip
Fix issue that was causing variable gCELine to be re-declared locally because of mistakenly using ',' instead of ';' on the line preceding the the use of the macro CE
-rw-r--r--Library/DcsTpmLib/Tpm20.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/DcsTpmLib/Tpm20.c b/Library/DcsTpmLib/Tpm20.c
index 3ddc4df..182742e 100644
--- a/Library/DcsTpmLib/Tpm20.c
+++ b/Library/DcsTpmLib/Tpm20.c
@@ -539,7 +539,7 @@ DcsTpm2NvRead(
{
EFI_STATUS res;
TPMI_SH_AUTH_SESSION SessionHandle = 0;
- UINT32 PcrMask,
+ UINT32 PcrMask;
CE(DcsTpm2NVReadPcrMask(&PcrMask));