[klibc] [klibc:update-dash] [VAR] Add newline when tracing in poplocalvars

klibc-bot for Peter Rosin peda at lysator.liu.se
Thu Jan 24 19:15:08 PST 2019


Commit-ID:  f885a1bc99e1c7b98fb6ffd8e93d4cd34cf0306a
Gitweb:     http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=f885a1bc99e1c7b98fb6ffd8e93d4cd34cf0306a
Author:     Peter Rosin <peda at lysator.liu.se>
AuthorDate: Fri, 23 Aug 2013 20:54:19 +1000
Committer:  Ben Hutchings <ben at decadent.org.uk>
CommitDate: Fri, 25 Jan 2019 02:57:21 +0000

[klibc] [VAR] Add newline when tracing in poplocalvars

Signed-off-by: Peter Rosin <peda at lysator.liu.se>
Signed-off-by: Herbert Xu <herbert at gondor.apana.org.au>
Signed-off-by: Ben Hutchings <ben at decadent.org.uk>

---
 usr/dash/var.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr/dash/var.c b/usr/dash/var.c
index dc90249f..c35e925e 100644
--- a/usr/dash/var.c
+++ b/usr/dash/var.c
@@ -547,7 +547,7 @@ poplocalvars(int keep)
 	while ((lvp = next) != NULL) {
 		next = lvp->next;
 		vp = lvp->vp;
-		TRACE(("poplocalvar %s", vp ? vp->text : "-"));
+		TRACE(("poplocalvar %s\n", vp ? vp->text : "-"));
 		if (keep) {
 			int bits = VSTRFIXED;
 


More information about the klibc mailing list