summaryrefslogtreecommitdiff
path: root/usr.bin/audio
diff options
context:
space:
mode:
authormrg <mrg@NetBSD.org>2002-12-08 10:49:22 +0000
committermrg <mrg@NetBSD.org>2002-12-08 10:49:22 +0000
commite7e34e98bbd44a0da2a8901dddc41bfa4bdcfbb1 (patch)
tree49c21491e91c3601e4fb05bd13d13ed10d95ebb3 /usr.bin/audio
parent18c97a14968a47b6dd6b268a31c478c4350abb65 (diff)
fix an error message
Diffstat (limited to 'usr.bin/audio')
-rw-r--r--usr.bin/audio/play/play.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/audio/play/play.c b/usr.bin/audio/play/play.c
index 58297b536db..0eab3b73de0 100644
--- a/usr.bin/audio/play/play.c
+++ b/usr.bin/audio/play/play.c
@@ -1,4 +1,4 @@
-/* $NetBSD: play.c,v 1.40 2002/11/04 12:04:23 mrg Exp $ */
+/* $NetBSD: play.c,v 1.41 2002/12/08 10:49:22 mrg Exp $ */
/*
* Copyright (c) 1999 Matthew R. Green
@@ -87,7 +87,7 @@ main(argc, argv)
case 'b':
decode_int(optarg, &balance);
if (balance < 0 || balance > 64)
- errx(1, "balance must be between 0 and 64");
+ errx(1, "balance must be between 0 and 63");
break;
case 'c':
decode_int(optarg, &channels);