diff options
Diffstat (limited to 'lib/console.c')
-rw-r--r-- | lib/console.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/console.c b/lib/console.c index 6bbb8a7c..a751f79d 100644 --- a/lib/console.c +++ b/lib/console.c @@ -743,11 +743,13 @@ setup_verbosity(VOID) setup_console(-1); } +#ifndef SHIM_UNIT_TEST VOID -msleep(unsigned long msecs) +usleep(unsigned long usecs) { - BS->Stall(msecs); + BS->Stall(usecs); } +#endif /* This is used in various things to determine if we should print to the * console */ |