mirror of https://github.com/acidanthera/audk.git
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
|
||||
sleep( unsigned int Seconds )
|
||||
{
|
||||
return (usleep( useconds_t(Seconds * 1000000) ));
|
||||
return (usleep( (useconds_t)(Seconds * 1000000) ));
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
Loading…
Reference in New Issue