From: Heinrich Schuchardt <xypron.glpk@gmx.de>
Date: Mon, 7 May 2018 19:59:34 +0000 (+0200)
Subject: xyz-modem: va_start() must be matched by va_end()
X-Git-Tag: v2025.01-rc5-pxa1908~4315
X-Git-Url: http://git.dujemihanovic.xyz/%22http:/kyber.dk/phpMyBuilder/static/git-logo.png?a=commitdiff_plain;h=23c648982b88725f9e2bab4294a7ca8ea368e3bc;p=u-boot.git

xyz-modem: va_start() must be matched by va_end()

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>
---

diff --git a/common/xyzModem.c b/common/xyzModem.c
index 519e414a6c..830fca8387 100644
--- a/common/xyzModem.c
+++ b/common/xyzModem.c
@@ -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