- Remove a useless initialization for 'ronly', if it hadn't been

there, we would have noticed that 'ronly' was uninitialized :-).
- Kill a nearby 'register' keyword.
This commit is contained in:
Maxime Henrion 2002-10-13 16:13:11 +00:00
parent 2afdbfe1e6
commit 15f6504832
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=105051

View file

@ -468,8 +468,8 @@ ntfs_unmount(
int mntflags,
struct thread *td)
{
register struct ntfsmount *ntmp;
int error, ronly = 0, flags, i;
struct ntfsmount *ntmp;
int error, ronly, flags, i;
dprintf(("ntfs_unmount: unmounting...\n"));
ntmp = VFSTONTFS(mp);