mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-28 16:14:04 +02:00
StdLib/LibC: Fix transcription error from submitted patch.
Signed-off-by: duanev@gmail.com Reviewed-by: darylm503 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12324 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
5252c2920c
commit
6f5e1c03c3
@ -96,7 +96,7 @@ usleep( useconds_t Microseconds )
|
|||||||
unsigned int
|
unsigned int
|
||||||
sleep( unsigned int Seconds )
|
sleep( unsigned int Seconds )
|
||||||
{
|
{
|
||||||
return (usleep( useconds_t(Seconds * 1000000) ));
|
return (usleep( (useconds_t)(Seconds * 1000000) ));
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
Loading…
x
Reference in New Issue
Block a user