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

From: Greg KH
Date: Wed Mar 09 2005 - 22:25:04 EST


ChangeSet 1.2033, 2005/03/09 15:24:07-08:00, gregkh@xxxxxxx

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

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

Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxx>


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,\

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/