From: Natanael Copa Date: Sun, 14 Mar 2010 14:32:49 +0000 (+0100) Subject: beep: the -d option takes milliseconds not microseconds X-Git-Tag: 1_17_0~411 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7cfec4b3e06cc1414079c4cea23239730959bf62;p=oweals%2Fbusybox.git beep: the -d option takes milliseconds not microseconds Signed-off-by: Natanael Copa Signed-off-by: Denys Vlasenko --- diff --git a/miscutils/beep.c b/miscutils/beep.c index c17cbfdad..b0ee7ea25 100644 --- 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); } }