Commit 48f46e74 authored by Anil Belur's avatar Anil Belur Committed by Greg Kroah-Hartman

staging: lustre: lustre: fld: lproc_fld.c fixed warning

fixed warning for line over 80 characters by moving the struct init
onto a diff line.
Signed-off-by: default avatarAnil Belur <askb23@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ae59720b
...@@ -91,10 +91,11 @@ static ssize_t ...@@ -91,10 +91,11 @@ static ssize_t
fld_proc_hash_seq_write(struct file *file, const char *buffer, fld_proc_hash_seq_write(struct file *file, const char *buffer,
size_t count, loff_t *off) size_t count, loff_t *off)
{ {
struct lu_client_fld *fld = ((struct seq_file *)file->private_data)->private; struct lu_client_fld *fld;
struct lu_fld_hash *hash = NULL; struct lu_fld_hash *hash = NULL;
int i; int i;
fld = ((struct seq_file *)file->private_data)->private;
LASSERT(fld != NULL); LASSERT(fld != NULL);
for (i = 0; fld_hash[i].fh_name != NULL; i++) { for (i = 0; fld_hash[i].fh_name != NULL; i++) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment