aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/dirname
diff options
context:
space:
mode:
authorArchie Cobbs <archie@FreeBSD.org>1998-12-06 22:58:23 +0000
committerArchie Cobbs <archie@FreeBSD.org>1998-12-06 22:58:23 +0000
commitfa146c53357ea20afd3661d8093ea1db44198d5f (patch)
treea75604be1743b2dbb3ae09ab3f3275f9f1d33d75 /usr.bin/dirname
parent872963ff956b81ce07e442531158371f50388eb4 (diff)
downloadsrc-fa146c53357ea20afd3661d8093ea1db44198d5f.tar.gz
src-fa146c53357ea20afd3661d8093ea1db44198d5f.zip
Tweaks to allow compiling -Wall (mostly adding "const" to char rcsid[]).
Notes
Notes: svn path=/head/; revision=41568
Diffstat (limited to 'usr.bin/dirname')
-rw-r--r--usr.bin/dirname/Makefile1
-rw-r--r--usr.bin/dirname/dirname.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/dirname/Makefile b/usr.bin/dirname/Makefile
index 76b4089abb80..0350db6690b9 100644
--- a/usr.bin/dirname/Makefile
+++ b/usr.bin/dirname/Makefile
@@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= dirname
+CFLAGS+=-Wall
NOMAN= noman
.include <bsd.prog.mk>
diff --git a/usr.bin/dirname/dirname.c b/usr.bin/dirname/dirname.c
index c6ca32682b55..056dc510737a 100644
--- a/usr.bin/dirname/dirname.c
+++ b/usr.bin/dirname/dirname.c
@@ -32,13 +32,13 @@
*/
#ifndef lint
-static char copyright[] =
+static const char copyright[] =
"@(#) Copyright (c) 1991, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
-static char sccsid[] = "@(#)dirname.c 8.4 (Berkeley) 5/4/95";
+static const char sccsid[] = "@(#)dirname.c 8.4 (Berkeley) 5/4/95";
#endif /* not lint */
#include <stdio.h>