diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/kernel/xloop_main_6.6.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/kernel/xloop_main_6.6.c b/src/kernel/xloop_main_6.6.c index 85acec5..871ce7b 100644 --- a/src/kernel/xloop_main_6.6.c +++ b/src/kernel/xloop_main_6.6.c @@ -444,7 +444,8 @@ static ssize_t xloop_attr_file_fmt_type_show(struct xloop_device *xlo, char *buf ssize_t len = 0; len = xloop_file_fmt_print_type(xlo->xlo_fmt->file_fmt_type, buf); - len += sysfs_emit(buf + len, "\n"); + /* do not use sysfs_emit here, doesn't work with offset */ + len += sprintf(buf + len, "\n"); return len; } |