nl(1): remove superfluous exit

Remove exit(3) call missed when errors were converted to errx(3).
This commit is contained in:
ginsbach 2020-12-22 17:50:55 +00:00
parent 005355a11c
commit 332df7ed8f
1 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: nl.c,v 1.12 2013/09/17 20:00:50 wiz Exp $ */ /* $NetBSD: nl.c,v 1.13 2020/12/22 17:50:55 ginsbach Exp $ */
/*- /*-
* Copyright (c) 1999 The NetBSD Foundation, Inc. * Copyright (c) 1999 The NetBSD Foundation, Inc.
@ -33,7 +33,7 @@
#ifndef lint #ifndef lint
__COPYRIGHT("@(#) Copyright (c) 1999\ __COPYRIGHT("@(#) Copyright (c) 1999\
The NetBSD Foundation, Inc. All rights reserved."); The NetBSD Foundation, Inc. All rights reserved.");
__RCSID("$NetBSD: nl.c,v 1.12 2013/09/17 20:00:50 wiz Exp $"); __RCSID("$NetBSD: nl.c,v 1.13 2020/12/22 17:50:55 ginsbach Exp $");
#endif #endif
#include <errno.h> #include <errno.h>
@ -392,7 +392,6 @@ parse_numbering(const char *argstr, int section)
errx(EXIT_FAILURE, errx(EXIT_FAILURE,
"illegal %s line numbering type -- %s", "illegal %s line numbering type -- %s",
numbering_properties[section].name, argstr); numbering_properties[section].name, argstr);
exit(EXIT_FAILURE);
} }
} }