summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/LRotU64.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/LRotU64.c')
-rw-r--r--MdePkg/Library/BaseLib/LRotU64.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/MdePkg/Library/BaseLib/LRotU64.c b/MdePkg/Library/BaseLib/LRotU64.c
index 85d732fb25..441b8f76e7 100644
--- a/MdePkg/Library/BaseLib/LRotU64.c
+++ b/MdePkg/Library/BaseLib/LRotU64.c
@@ -1,7 +1,7 @@
/** @file
Math worker functions.
- Copyright (c) 2006, Intel Corporation<BR>
+ Copyright (c) 2006 - 2008, Intel Corporation<BR>
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -12,9 +12,6 @@
**/
-
-
-
#include "BaseLibInternals.h"
/**
@@ -40,6 +37,6 @@ LRotU64 (
IN UINTN Count
)
{
- ASSERT (Count < sizeof (Operand) * 8);
+ ASSERT (Count < 64);
return InternalMathLRotU64 (Operand, Count);
}