diff options
author | Warner Losh <imp@FreeBSD.org> | 2018-06-13 17:42:50 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2018-06-13 17:42:50 +0000 |
commit | 6d423eb2cb9bc2fd1aa22d71511775eb7acb8fa5 (patch) | |
tree | 6c0171d59ef22b2811e72ec9ee75a249a5b196f4 /stand/libsa/ufs.c | |
parent | caa999479f54630b23d147fb69f7d7d28ff4278f (diff) | |
download | src-6d423eb2cb9bc2fd1aa22d71511775eb7acb8fa5.tar.gz src-6d423eb2cb9bc2fd1aa22d71511775eb7acb8fa5.zip |
Remove unused variables.
Sponsored by: Netflix
Notes
Notes:
svn path=/head/; revision=335070
Diffstat (limited to 'stand/libsa/ufs.c')
-rw-r--r-- | stand/libsa/ufs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stand/libsa/ufs.c b/stand/libsa/ufs.c index a0166acf536b..204bc969f968 100644 --- a/stand/libsa/ufs.c +++ b/stand/libsa/ufs.c @@ -506,8 +506,7 @@ ufs_open(upath, f) ino_t inumber, parent_inumber; struct file *fp; struct fs *fs; - int i, rc; - size_t buf_size; + int rc; int nlinks = 0; char namebuf[MAXPATHLEN+1]; char *buf = NULL; |