summaryrefslogtreecommitdiffstats
path: root/usr.bin/nl/nl.c
diff options
context:
space:
mode:
authored <ed@FreeBSD.org>2011-10-14 07:28:39 +0000
committered <ed@FreeBSD.org>2011-10-14 07:28:39 +0000
commita87680cb54c5527863a305ca99760e9368301255 (patch)
treeb08330824acc0c82822717d663781b107a8d806f /usr.bin/nl/nl.c
parentec118486fa0ca2d96d855d51366187d63dbfa03e (diff)
downloadFreeBSD-src-a87680cb54c5527863a305ca99760e9368301255.zip
FreeBSD-src-a87680cb54c5527863a305ca99760e9368301255.tar.gz
Make nl(1) build with WARNS=6.
Obtained from: NetBSD
Diffstat (limited to 'usr.bin/nl/nl.c')
-rw-r--r--usr.bin/nl/nl.c20
1 files changed, 8 insertions, 12 deletions
diff --git a/usr.bin/nl/nl.c b/usr.bin/nl/nl.c
index b3b78b1..9c2ae64 100644
--- a/usr.bin/nl/nl.c
+++ b/usr.bin/nl/nl.c
@@ -73,9 +73,9 @@ struct numbering_property {
#define NP_LAST HEADER
static struct numbering_property numbering_properties[NP_LAST + 1] = {
- { "footer", number_none },
- { "body", number_nonempty },
- { "header", number_none }
+ { .name = "footer", .type = number_none },
+ { .name = "body", .type = number_nonempty },
+ { .name = "header", .type = number_none }
};
#define max(a, b) ((a) > (b) ? (a) : (b))
@@ -128,9 +128,7 @@ static int width = 6;
int
-main(argc, argv)
- int argc;
- char *argv[];
+main(int argc, char *argv[])
{
int c;
long val;
@@ -258,7 +256,7 @@ main(argc, argv)
delimlen = delim1len + delim2len;
/* Allocate a buffer suitable for preformatting line number. */
- intbuffersize = max(INT_STRLEN_MAXIMUM, width) + 1; /* NUL */
+ intbuffersize = max((int)INT_STRLEN_MAXIMUM, width) + 1; /* NUL */
if ((intbuffer = malloc(intbuffersize)) == NULL)
err(EXIT_FAILURE, "cannot allocate preformatting buffer");
@@ -270,7 +268,7 @@ main(argc, argv)
}
static void
-filter()
+filter(void)
{
char *buffer;
size_t buffersize;
@@ -359,9 +357,7 @@ nextline:
*/
static void
-parse_numbering(argstr, section)
- const char *argstr;
- int section;
+parse_numbering(const char *argstr, int section)
{
int error;
char errorbuf[NL_TEXTMAX];
@@ -403,7 +399,7 @@ parse_numbering(argstr, section)
}
static void
-usage()
+usage(void)
{
(void)fprintf(stderr,
OpenPOWER on IntegriCloud