diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-07-09 06:52:55 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2016-07-09 06:52:55 +0000 |
| commit | 0833e924c6a60befbb326e0fa3cb65e910fa5361 (patch) | |
| tree | 3cc808a809f4fb579afc4753997022a23a0ffb9a | |
| parent | 9cb2b2546487d0a7aa80a3f49a7107eafb4608d9 (diff) | |
Notes
| -rw-r--r-- | usr.bin/mkcsmapper/yacc.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/mkcsmapper/yacc.y b/usr.bin/mkcsmapper/yacc.y index 97aade1ff5b81..89ce5fd698907 100644 --- a/usr.bin/mkcsmapper/yacc.y +++ b/usr.bin/mkcsmapper/yacc.y @@ -664,7 +664,7 @@ do_mkpv(FILE *in) if (ret && output) unlink(output); /* dump failure */ if (ret) - errc(EXIT_FAILURE, ret, ""); + errx(EXIT_FAILURE, "%s\n", strerror(ret)); } static void |
