From e7e34e98bbd44a0da2a8901dddc41bfa4bdcfbb1 Mon Sep 17 00:00:00 2001 From: mrg Date: Sun, 8 Dec 2002 10:49:22 +0000 Subject: fix an error message --- usr.bin/audio/play/play.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin') 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); -- cgit