Remove init from declaration, collapse two int vars declarations into single.

MFC after:	3 weeks
This commit is contained in:
Dmitry Chagin 2017-07-08 21:05:28 +00:00
parent 1901d0d8d3
commit 073b14b469
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=320816

View file

@ -124,9 +124,9 @@ fdesc_unmount(struct mount *mp, int mntflags)
{
struct fdescmount *fmp;
caddr_t data;
int error;
int flags = 0;
int error, flags;
flags = 0;
fmp = (struct fdescmount *)mp->mnt_data;
if (mntflags & MNT_FORCE) {
/* The hash mutex protects the private mount flags. */