gregkh@suse.de
[PATCH] debufs: make built in types add a \n to their output
ChangeSet 1.2033, 2005/03/09 15:24:07-08:00, gregkh@suse.de

[PATCH] debufs: make built in types add a \n to their output

Thanks to Alessandro Rubini <rubini@gnudd.com> for pointing this out.

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>


 fs/debugfs/file.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


diff -Nru a/fs/debugfs/file.c b/fs/debugfs/file.c
--- a/fs/debugfs/file.c	2005-03-09 16:23:09 -08:00
+++ b/fs/debugfs/file.c	2005-03-09 16:23:09 -08:00
@@ -52,7 +52,7 @@
 	char buf[32];								\
 	type *val = file->private_data;						\
 										\
-	snprintf(buf, sizeof(buf), format, *val);				\
+	snprintf(buf, sizeof(buf), format "\n", *val);				\
 	return simple_read_from_buffer(user_buf, count, ppos, buf, strlen(buf));\
 }										\
 static ssize_t write_file_##type(struct file *file, const char __user *user_buf,\
