提交 21c1ddf3 编写于 作者: S Szymon Janc 提交者: Greg Kroah-Hartman

Staging: quickstart: Use %u for printing button id

Button id is of unsigned int type.
Signed-off-by: NSzymon Janc <szymon@janc.net.pl>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 505d2ad2
......@@ -80,7 +80,7 @@ static ssize_t quickstart_buttons_show(struct device *dev,
return snprintf(buf, PAGE_SIZE, "none");
list_for_each_entry(b, &buttons, list) {
count += snprintf(buf + count, PAGE_SIZE - count, "%d\t%s\n",
count += snprintf(buf + count, PAGE_SIZE - count, "%u\t%s\n",
b->id, b->name);
if (count >= PAGE_SIZE) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册