From: Sascha Hauer <s.hauer@pengutronix.de>
To: Antony Pavlov <antonynpavlov@gmail.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH] vsprintf: fix formatting
Date: Thu, 22 May 2014 08:12:20 +0200 [thread overview]
Message-ID: <20140522061220.GB15686@pengutronix.de> (raw)
In-Reply-To: <1400736004-6488-1-git-send-email-antonynpavlov@gmail.com>
On Thu, May 22, 2014 at 09:20:04AM +0400, Antony Pavlov wrote:
> Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
Applied, thanks
Sascha
> ---
> lib/vsprintf.c | 11 ++++++-----
> 1 file changed, 6 insertions(+), 5 deletions(-)
>
> diff --git a/lib/vsprintf.c b/lib/vsprintf.c
> index c73db73..066338b 100644
> --- a/lib/vsprintf.c
> +++ b/lib/vsprintf.c
> @@ -370,7 +370,7 @@ int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
> /* get the precision */
> precision = -1;
> if (*fmt == '.') {
> - ++fmt;
> + ++fmt;
> if (isdigit(*fmt))
> precision = skip_atoi(&fmt);
> else if (*fmt == '*') {
> @@ -534,7 +534,8 @@ int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
> {
> int i;
>
> - i=vsnprintf(buf,size,fmt,args);
> + i = vsnprintf(buf, size, fmt, args);
> +
> return (i >= size) ? (size - 1) : i;
> }
> EXPORT_SYMBOL(vscnprintf);
> @@ -566,13 +567,13 @@ int sprintf(char * buf, const char *fmt, ...)
> int i;
>
> va_start(args, fmt);
> - i=vsprintf(buf,fmt,args);
> + i = vsprintf(buf, fmt, args);
> va_end(args);
> return i;
> }
> EXPORT_SYMBOL(sprintf);
>
> -int snprintf(char * buf, size_t size, const char *fmt, ...)
> +int snprintf(char *buf, size_t size, const char *fmt, ...)
> {
> va_list args;
> int i;
> @@ -620,7 +621,7 @@ EXPORT_SYMBOL(asprintf);
>
> void __noreturn panic(const char *fmt, ...)
> {
> - va_list args;
> + va_list args;
> va_start(args, fmt);
> vprintf(fmt, args);
> putchar('\n');
> --
> 1.9.2
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
prev parent reply other threads:[~2014-05-22 6:12 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-22 5:20 Antony Pavlov
2014-05-22 6:12 ` Sascha Hauer [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140522061220.GB15686@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=antonynpavlov@gmail.com \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox