Fix growfs(8) build with debug enabled (make -DGFSDBG).

PR:		199641
Submitted by:	Willem Jan Withagen <wjw at digiware dot nl>
MFC after:	1 month
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Edward Tomasz Napierala 2015-04-24 12:48:48 +00:00
parent 6eec0f2bda
commit a44ba043c9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=281929
2 changed files with 5 additions and 5 deletions

View File

@ -4,8 +4,6 @@
# $FreeBSD$
#
#GFSDBG=
.include <src.opts.mk>
.PATH: ${.CURDIR}/../mount
@ -16,7 +14,9 @@ MAN= growfs.8
CFLAGS+=-I${.CURDIR}/../mount
.if defined(GFSDBG)
SRCS+= debug.c
SRCS+= debug.c
CFLAGS+= -DFS_DEBUG
NO_WCAST_ALIGN= yes
.endif
LIBADD= util

View File

@ -161,7 +161,7 @@ growfs(int fsi, int fso, unsigned int Nflag)
#ifdef FS_DEBUG
{
struct csum *dbg_csp;
int dbg_csc;
u_int32_t dbg_csc;
char dbg_line[80];
dbg_csp = fscs;
@ -242,7 +242,7 @@ growfs(int fsi, int fso, unsigned int Nflag)
#ifdef FS_DEBUG
{
struct csum *dbg_csp;
int dbg_csc;
u_int32_t dbg_csc;
char dbg_line[80];
dbg_csp = fscs;