diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-08 12:21:45 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-08 12:21:45 +0200 |
commit | 1b84f4a22adb1a8c3fa633a5b08081694667505c (patch) | |
tree | 59ad2616c9b5452576c525f86445faa7534e223b | |
parent | 13102634bb38befd80fafb5d2ebd915d7dcf0c5f (diff) | |
download | busybox-w32-1b84f4a22adb1a8c3fa633a5b08081694667505c.tar.gz busybox-w32-1b84f4a22adb1a8c3fa633a5b08081694667505c.tar.bz2 busybox-w32-1b84f4a22adb1a8c3fa633a5b08081694667505c.zip |
beep: disallow FEATURE_BEEP_FREQ = 0 in configuration
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | miscutils/beep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/beep.c b/miscutils/beep.c index 14802b543..216f69400 100644 --- a/miscutils/beep.c +++ b/miscutils/beep.c | |||
@@ -16,7 +16,7 @@ | |||
16 | //config: | 16 | //config: |
17 | //config:config FEATURE_BEEP_FREQ | 17 | //config:config FEATURE_BEEP_FREQ |
18 | //config: int "default frequency" | 18 | //config: int "default frequency" |
19 | //config: range 0 2147483647 | 19 | //config: range 20 50000 # allowing 0 here breaks the build |
20 | //config: default 4000 | 20 | //config: default 4000 |
21 | //config: depends on BEEP | 21 | //config: depends on BEEP |
22 | //config: help | 22 | //config: help |