From: dcoppa Date: Sun, 26 Apr 2015 17:26:59 +0000 (+0000) Subject: Fix typo in the buffer size value: 7680 in the manpage vs 7860 in X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=18fa537d23509a237e4a981e2da23b2433a56c23;p=openbsd 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@ --- 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 * @@ -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 /*