projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
29f354e
)
beep: the -d option takes milliseconds not microseconds
author
Natanael Copa
<natanael.copa@gmail.com>
Sun, 14 Mar 2010 14:32:49 +0000
(15:32 +0100)
committer
Denys Vlasenko
<vda.linux@googlemail.com>
Sun, 14 Mar 2010 14:32:49 +0000
(15:32 +0100)
Signed-off-by: Natanael Copa <natanael.copa@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
miscutils/beep.c
patch
|
blob
|
history
diff --git
a/miscutils/beep.c
b/miscutils/beep.c
index c17cbfdad53064f7a9a5e6a703e481dfff121045..b0ee7ea25ccda4cb724d4e0f44b37b303ce9c698 100644
(file)
--- a/
miscutils/beep.c
+++ b/
miscutils/beep.c
@@
-79,11
+79,11
@@
int beep_main(int argc, char **argv)
}
while (rep) {
//bb_info_msg("rep[%d] freq=%d, length=%d, delay=%d", rep, freq, length, delay);
- xioctl(speaker, KIOCSOUND, (void*)(
long
)tickrate_div_freq);
+ xioctl(speaker, KIOCSOUND, (void*)(
uintptr_t
)tickrate_div_freq);
usleep(1000 * length);
ioctl(speaker, KIOCSOUND, (void*)0);
if (--rep)
- usleep(delay);
+ usleep(
1000 *
delay);
}
}