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-18 19:20:58 +0200 |
commit | 2f6dc07d8fe5cc3349b28ea3351baf050af750d5 (patch) | |
tree | 2c69fb0cceb62739e85c54f34f37fbf39e02fb72 | |
parent | 54916641be96b6b13e3df9b09dd5a78abefb612b (diff) | |
download | busybox-w32-2f6dc07d8fe5cc3349b28ea3351baf050af750d5.tar.gz busybox-w32-2f6dc07d8fe5cc3349b28ea3351baf050af750d5.tar.bz2 busybox-w32-2f6dc07d8fe5cc3349b28ea3351baf050af750d5.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 |