]> git.sur5r.net Git - u-boot/commitdiff
xyz-modem: va_start() must be matched by va_end()
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Mon, 7 May 2018 19:59:34 +0000 (21:59 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 11 May 2018 00:38:34 +0000 (20:38 -0400)
Every va_start() call must be matched by a va_end() call.

scripts/checkpatch.pl required reformatting the complete function
zm_dprintf().

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
common/xyzModem.c

index 519e414a6c10f4073e9d7421750e95d92b304d08..830fca8387536f372f9988fe7f9ee2b6f0c6acc3 100644 (file)
@@ -180,15 +180,16 @@ static char *zm_out = zm_debug_buf;
 static char *zm_out_start = zm_debug_buf;
 
 static int
-zm_dprintf (char *fmt, ...)
+zm_dprintf(char *fmt, ...)
 {
-  int len;
-  va_list args;
-
-  va_start (args, fmt);
-  len = diag_vsprintf (zm_out, fmt, args);
-  zm_out += len;
-  return len;
+       int len;
+       va_list args;
+
+       va_start(args, fmt);
+       len = diag_vsprintf(zm_out, fmt, args);
+       va_end(args);
+       zm_out += len;
+       return len;
 }
 
 static void