From 500127f922c086c3325211acf71fc0826c5a997d Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Mon, 24 Jan 2000 17:07:44 +0000 Subject: Fix msDelay() function to not sleep 10 times too long. --- comms/mlan/files/patch-ab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'comms') diff --git a/comms/mlan/files/patch-ab b/comms/mlan/files/patch-ab index 6e35c77d7ccf..14aeeccf98c6 100644 --- a/comms/mlan/files/patch-ab +++ b/comms/mlan/files/patch-ab @@ -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); +} + + -- cgit v1.2.3