diff options
Diffstat (limited to 'EmulatorPkg/Library/PeiTimerLib/PeiTimerLib.c')
-rw-r--r-- | EmulatorPkg/Library/PeiTimerLib/PeiTimerLib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/EmulatorPkg/Library/PeiTimerLib/PeiTimerLib.c b/EmulatorPkg/Library/PeiTimerLib/PeiTimerLib.c index 8c4f20f42b..5344719f98 100644 --- a/EmulatorPkg/Library/PeiTimerLib/PeiTimerLib.c +++ b/EmulatorPkg/Library/PeiTimerLib/PeiTimerLib.c @@ -1,7 +1,7 @@ /** @file
A non-functional instance of the Timer Library.
- Copyright (c) 2007 - 2019, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2007 - 2023, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
@@ -65,7 +65,7 @@ NanoSecondDelay ( );
if (!EFI_ERROR (Status)) {
Thunk = (EMU_THUNK_PROTOCOL *)ThunkPpi->Thunk ();
- Thunk->Sleep (NanoSeconds * 100);
+ Thunk->Sleep (NanoSeconds);
return NanoSeconds;
}
|