klibc-bot for Peter Rosin
2020-Mar-28 21:48 UTC
[klibc] [klibc:update-dash] dash: [VAR] Add newline when tracing in poplocalvars
Commit-ID: cd3104d4d44a7723a93c2c316ea60a2d6ab83677 Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=cd3104d4d44a7723a93c2c316ea60a2d6ab83677 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: Sat, 28 Mar 2020 21:42:54 +0000 [klibc] dash: [VAR] Add newline when tracing in poplocalvars [ dash commit 14f70561a50fc8eba75b818a4705fed44da2ba2e ] 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;
Possibly Parallel Threads
- [klibc:update-dash] [VAR] Add newline when tracing in poplocalvars
- [klibc:update-dash] dash: eval: Replace with listsetvar with mklocal/setvareq
- klibc 1.5.23 release
- [klibc:master] [SHELL] Allow building without LINEO support
- [klibc:update-dash] [VAR] Use setvareq to set OPTIND initially