From 9e82974459c03e26ded24a5a55bf0707a93ed127 Mon Sep 17 00:00:00 2001 From: ru Date: Thu, 16 Nov 2006 12:27:51 +0000 Subject: Replace magic numbers for console bell types with defines. --- usr.sbin/kbdcontrol/kbdcontrol.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.sbin/kbdcontrol/kbdcontrol.c') diff --git a/usr.sbin/kbdcontrol/kbdcontrol.c b/usr.sbin/kbdcontrol/kbdcontrol.c index f9fee14..c800233 100644 --- a/usr.sbin/kbdcontrol/kbdcontrol.c +++ b/usr.sbin/kbdcontrol/kbdcontrol.c @@ -907,11 +907,11 @@ set_bell_values(char *opt) bell = 0; if (!strncmp(opt, "quiet.", 6)) { - bell = 2; + bell = CONS_QUIET_BELL; opt += 6; } if (!strcmp(opt, "visual")) - bell |= 1; + bell |= CONS_VISUAL_BELL; else if (!strcmp(opt, "normal")) duration = 5, pitch = 800; else if (!strcmp(opt, "off")) @@ -936,7 +936,7 @@ badopt: } ioctl(0, CONS_BELLTYPE, &bell); - if ((bell & ~2) == 0) + if (!(bell & CONS_VISUAL_BELL)) fprintf(stderr, "[=%d;%dB", pitch, duration); } -- cgit v1.1