This commit was generated by cvs2svn to compensate for changes in r118624,

which included commits to RCS files with non-trunk default branches.
This commit is contained in:
Nate Lawson 2003-08-07 18:19:12 +00:00
commit 0eb1dbb16e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=118625

View File

@ -815,7 +815,7 @@ AcpiOsSleep (
UINT32 milliseconds)
{
sleep ((seconds * 1000) + milliseconds);
usleep (((seconds * 1000) + milliseconds) * 1000);
return;
}