diff options
author | David Coppa <dcoppa@cvs.openbsd.org> | 2015-04-26 17:27:00 +0000 |
---|---|---|
committer | David Coppa <dcoppa@cvs.openbsd.org> | 2015-04-26 17:27:00 +0000 |
commit | 327d76b209bb107dd185cd1c062f3ef7d9128d73 (patch) | |
tree | 9e3ed971737ee1e403c70bd2d56aab8c7a5c5989 | |
parent | 14c4790716bdae5ca1e95f56c396b00e8ad97bef (diff) |
Fix typo in the buffer size value: 7680 in the manpage vs 7860 in
the sndiod.c code.
Initially, I thought the error was in the manpage, but Alexander
told me it was the code, so fix the code instead.
ok ratchov@
-rw-r--r-- | usr.bin/sndiod/sndiod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/sndiod/sndiod.c b/usr.bin/sndiod/sndiod.c index b108ef2e7f8..50c68ff8012 100644 --- a/usr.bin/sndiod/sndiod.c +++ b/usr.bin/sndiod/sndiod.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sndiod.c,v 1.7 2015/01/16 06:40:12 deraadt Exp $ */ +/* $OpenBSD: sndiod.c,v 1.8 2015/04/26 17:26:59 dcoppa Exp $ */ /* * Copyright (c) 2008-2012 Alexandre Ratchov <alex@caoua.org> * @@ -74,7 +74,7 @@ * buffer size if neither ``-z'' nor ``-b'' is used */ #ifndef DEFAULT_BUFSZ -#define DEFAULT_BUFSZ 7860 +#define DEFAULT_BUFSZ 7680 #endif /* |