Re: [PATCH] block: Fix format string mismatch in cfq-iosched.c

From: Jens Axboe
Date: Wed Apr 30 2014 - 17:56:40 EST


On 04/27/2014 09:38 PM, Masanari Iida wrote:
> Fix format string mismatch in cfq_var_show()
>
> Signed-off-by: Masanari Iida <standby24x7@xxxxxxxxx>
> ---
> block/cfq-iosched.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c
> index 5063a0b..22dffeb 100644
> --- a/block/cfq-iosched.c
> +++ b/block/cfq-iosched.c
> @@ -4460,7 +4460,7 @@ out_free:
> static ssize_t
> cfq_var_show(unsigned int var, char *page)
> {
> - return sprintf(page, "%d\n", var);
> + return sprintf(page, "%u\n", var);
> }
>
> static ssize_t

Thanks, applied.

--
Jens Axboe

--
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/