Constify and set WARNS=2.

Submitted by:	Mike Barcroft <mike@q9media.com>
Reviewed by:	md5(1)
This commit is contained in:
Dima Dorfman 2001-06-24 18:51:40 +00:00
parent 167ce4fb00
commit 0e304b4853
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=78715
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
# $FreeBSD$
PROG= boot98cfg
WARNS?= 2
MAN= boot98cfg.8
.include <bsd.prog.mk>

View File

@ -114,7 +114,7 @@ int
main(int argc, char *argv[])
{
char *endptr;
char *iplpath = "/boot/boot0", *menupath = "/boot/boot0.5";
const char *iplpath = "/boot/boot0", *menupath = "/boot/boot0.5";
char *iplbakpath = NULL, *menubakpath = NULL;
char *disk;
int B_flag = 0;