mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
fs/binfmt_misc.c: add terminating newline to /proc/sys/fs/binfmt_misc/status
The following is what it looks like before patching. It is not much readable. user@ubuntu:/proc/sys/fs/binfmt_misc$ cat status enableduser@ubuntu:/proc/sys/fs/binfmt_misc$ Signed-off-by: Qinghuang Feng <qhfeng.kernel@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
5cf0cc4e67
commit
87113e806a
1 changed files with 1 additions and 1 deletions
|
@ -649,7 +649,7 @@ static const struct file_operations bm_register_operations = {
|
||||||
static ssize_t
|
static ssize_t
|
||||||
bm_status_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos)
|
bm_status_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos)
|
||||||
{
|
{
|
||||||
char *s = enabled ? "enabled" : "disabled";
|
char *s = enabled ? "enabled\n" : "disabled\n";
|
||||||
|
|
||||||
return simple_read_from_buffer(buf, nbytes, ppos, s, strlen(s));
|
return simple_read_from_buffer(buf, nbytes, ppos, s, strlen(s));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue