[PATCH] vsprintf: fix formatting
Sascha Hauer
s.hauer at pengutronix.de
Wed May 21 23:12:20 PDT 2014
On Thu, May 22, 2014 at 09:20:04AM +0400, Antony Pavlov wrote:
> Signed-off-by: Antony Pavlov <antonynpavlov at 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 at 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 |
More information about the barebox
mailing list