From 2780ac962ec75f548acb616dd810515e528ac0b1 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Wed, 17 Aug 2016 00:06:57 +0200 Subject: Linux: fix various compilation issues under Linux. --- src/Common/Crypto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Common/Crypto.c') diff --git a/src/Common/Crypto.c b/src/Common/Crypto.c index f3045d0c..3c52ef74 100644 --- a/src/Common/Crypto.c +++ b/src/Common/Crypto.c @@ -760,7 +760,7 @@ int GetMaxPkcs5OutSize (void) { int size = 32; - size = max (size, EAGetLargestKeyForMode (XTS) * 2); // Sizes of primary + secondary keys + size = VC_MAX (size, EAGetLargestKeyForMode (XTS) * 2); // Sizes of primary + secondary keys return size; } -- cgit v1.2.3