Re: [PATCH] vsprintf: spread "const char *"

From: Steven Rostedt
Date: Thu Dec 19 2019 - 21:05:09 EST


On Thu, 19 Dec 2019 20:34:58 +0300
Alexey Dobriyan <adobriyan@xxxxxxxxx> wrote:

What does 'spread "const char*"' mean?

And you need to have a change log. Did this cause a warning? If so,
please show it in the change log.

-- Steve


> Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx>
> ---
>
> lib/vsprintf.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> --- a/lib/vsprintf.c
> +++ b/lib/vsprintf.c
> @@ -1550,7 +1550,7 @@ static noinline_for_stack
> char *ip_addr_string(char *buf, char *end, const void *ptr,
> struct printf_spec spec, const char *fmt)
> {
> - char *err_fmt_msg;
> + const char *err_fmt_msg;
>
> if (check_pointer(&buf, end, ptr, spec))
> return buf;