diff options
author | phk <phk@FreeBSD.org> | 2000-01-24 17:07:44 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2000-01-24 17:07:44 +0000 |
commit | 86824928f484015ec5f70d05ed98d190a02369f2 (patch) | |
tree | ec2f14831e6ae8faae146b2c24c24cefdd70d0eb /comms | |
parent | fcff7c239e90791ea9957a55db2aab173b0512a9 (diff) | |
download | FreeBSD-ports-86824928f484015ec5f70d05ed98d190a02369f2.zip FreeBSD-ports-86824928f484015ec5f70d05ed98d190a02369f2.tar.gz |
Fix msDelay() function to not sleep 10 times too long.
Diffstat (limited to 'comms')
-rw-r--r-- | comms/mlan/files/patch-ab | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comms/mlan/files/patch-ab b/comms/mlan/files/patch-ab index 6e35c77..14aeecc 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); +} + + |