[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <53617188.9070108@kernel.dk>
Date: Wed, 30 Apr 2014 15:56:24 -0600
From: Jens Axboe <axboe@...nel.dk>
To: Masanari Iida <standby24x7@...il.com>, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] block: Fix format string mismatch in cfq-iosched.c
On 04/27/2014 09:38 PM, Masanari Iida wrote:
> Fix format string mismatch in cfq_var_show()
>
> Signed-off-by: Masanari Iida <standby24x7@...il.com>
> ---
> 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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists