diff options
author | kris <kris@FreeBSD.org> | 2001-05-20 04:54:15 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-05-20 04:54:15 +0000 |
commit | 87fe6c7de032e5872bc35efed230a204f27fe2f8 (patch) | |
tree | d293621382fc57b2d0c8b17b0434e4372401f110 /bin | |
parent | bc311d5aefc06707cbfb2f96988dc353a98b2d91 (diff) | |
download | FreeBSD-src-87fe6c7de032e5872bc35efed230a204f27fe2f8.zip FreeBSD-src-87fe6c7de032e5872bc35efed230a204f27fe2f8.tar.gz |
Silence WARNS=2 and BDECFLAGS on i386 and alpha
MFC After: 1 week
Diffstat (limited to 'bin')
-rw-r--r-- | bin/hostname/Makefile | 2 | ||||
-rw-r--r-- | bin/hostname/hostname.c | 5 | ||||
-rw-r--r-- | bin/ln/Makefile | 2 | ||||
-rw-r--r-- | bin/ln/ln.c | 9 |
4 files changed, 12 insertions, 6 deletions
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 <bsd.prog.mk> 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 <string.h> #include <unistd.h> +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'; diff --git a/bin/ln/Makefile b/bin/ln/Makefile index b541f8b..1ccd02c 100644 --- a/bin/ln/Makefile +++ b/bin/ln/Makefile @@ -7,4 +7,6 @@ MAN= ln.1 symlink.7 LINKS= ${BINDIR}/ln ${BINDIR}/link MLINKS= ln.1 link.1 +WARNS= 2 + .include <bsd.prog.mk> diff --git a/bin/ln/ln.c b/bin/ln/ln.c index 83fe651..e2dfbc1 100644 --- a/bin/ln/ln.c +++ b/bin/ln/ln.c @@ -64,7 +64,7 @@ int vflag; /* Verbose output. */ int (*linkf) __P((const char *, const char *)); char linkch; -int linkit __P((char *, char *, int)); +int linkit __P((const char *, const char *, int)); int main __P((int, char *[])); void usage __P((void)); @@ -74,8 +74,8 @@ main(argc, argv) char *argv[]; { struct stat sb; - int ch, exitval; char *p, *sourcedir; + int ch, exitval; /* * Test for the special case where the utility is called as @@ -155,12 +155,13 @@ main(argc, argv) int linkit(target, source, isdir) - char *target, *source; + const char *target, *source; int isdir; { struct stat sb; + const char *p; + char path[MAXPATHLEN]; int ch, exists, first; - char *p, path[MAXPATHLEN]; if (!sflag) { /* If target doesn't exist, quit now. */ |