From 87fe6c7de032e5872bc35efed230a204f27fe2f8 Mon Sep 17 00:00:00 2001 From: kris Date: Sun, 20 May 2001 04:54:15 +0000 Subject: Silence WARNS=2 and BDECFLAGS on i386 and alpha MFC After: 1 week --- bin/hostname/Makefile | 2 ++ bin/hostname/hostname.c | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'bin/hostname') diff --git a/bin/hostname/Makefile b/bin/hostname/Makefile index 3c7997f..5503b35 100644 --- a/bin/hostname/Makefile +++ b/bin/hostname/Makefile @@ -3,4 +3,6 @@ PROG= hostname +WARNS= 2 + .include diff --git a/bin/hostname/hostname.c b/bin/hostname/hostname.c index 94e5d4a..4fc5099 100644 --- a/bin/hostname/hostname.c +++ b/bin/hostname/hostname.c @@ -53,6 +53,7 @@ static const char rcsid[] = #include #include +int main __P((int, char *[])); void usage __P((void)); int @@ -80,10 +81,10 @@ main(argc,argv) usage(); if (*argv) { - if (sethostname(*argv, strlen(*argv))) + if (sethostname(*argv, (int)strlen(*argv))) err(1, "sethostname"); } else { - if (gethostname(hostname, sizeof(hostname))) + if (gethostname(hostname, (int)sizeof(hostname))) err(1, "gethostname"); if (sflag && (p = strchr(hostname, '.'))) *p = '\0'; -- cgit v1.1