Commit 9bcaa35c authored by Markus Elfring's avatar Markus Elfring Committed by Trond Myklebust

NFS: Use seq_putc() in nfs_show_stats()

A single character (line break) should be put into a sequence.
Thus use the corresponding function “seq_putc”.

This issue was detected by using the Coccinelle software.
Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarTrond Myklebust <trond.myklebust@hammerspace.com>
parent db531db9
......@@ -905,7 +905,7 @@ int nfs_show_stats(struct seq_file *m, struct dentry *root)
seq_printf(m, "%Lu ", totals.fscache[i]);
}
#endif
seq_printf(m, "\n");
seq_putc(m, '\n');
rpc_clnt_show_stats(m, nfss->client);
......
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