diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2009-10-27 22:21:38 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2009-10-27 22:21:38 +0000 |
commit | 4528b6b704281f1bef57fea04db277539239a120 (patch) | |
tree | b288ddc57d228600c412205ddd42b87f16bcdeeb | |
parent | fcc08b65e276a9be86ea52f65b26e26619b5ca01 (diff) |
add missing word in error message
-rw-r--r-- | usr.bin/aucat/aucat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/aucat/aucat.c b/usr.bin/aucat/aucat.c index bd3c8079e4b..32c20733de3 100644 --- a/usr.bin/aucat/aucat.c +++ b/usr.bin/aucat/aucat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aucat.c,v 1.72 2009/10/10 13:55:37 ratchov Exp $ */ +/* $OpenBSD: aucat.c,v 1.73 2009/10/27 22:21:37 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org> * @@ -118,7 +118,7 @@ opt_xrun(void) return XRUN_SYNC; if (strcmp("error", optarg) == 0) return XRUN_ERROR; - errx(1, "%s: underrun/overrun policy", optarg); + errx(1, "%s: bad underrun/overrun policy", optarg); } int |