Fix msDelay() function to not sleep 10 times too long.

This commit is contained in:
Poul-Henning Kamp 2000-01-24 17:07:44 +00:00
parent 8674b327f0
commit 500127f922
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=25033

View file

@ -164,7 +164,7 @@ diff -u --new-file -r ../R1/examples/freebsd/lib/serial.c ./examples/freebsd/lib
+//
+void msDelay(int len)
+{
+ usleep(len * 10000);
+ usleep(len * 1000);
+}
+
+