Module Name:    src
Committed By:   kre
Date:           Sat Jun 17 04:16:33 UTC 2017

Modified Files:
        src/bin/sh: show.c

Log Message:
NFC (normal use) - DEBUG only change, when showing empty arg list don't
omit terminating \n.


To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 src/bin/sh/show.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/bin/sh/show.c
diff -u src/bin/sh/show.c:1.44 src/bin/sh/show.c:1.45
--- src/bin/sh/show.c:1.44	Thu Jun  8 13:17:00 2017
+++ src/bin/sh/show.c	Sat Jun 17 04:16:33 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: show.c,v 1.44 2017/06/08 13:17:00 kre Exp $	*/
+/*	$NetBSD: show.c,v 1.45 2017/06/17 04:16:33 kre Exp $	*/
 
 /*-
  * Copyright (c) 1991, 1993
@@ -39,7 +39,7 @@
 #if 0
 static char sccsid[] = "@(#)show.c	8.3 (Berkeley) 5/4/95";
 #else
-__RCSID("$NetBSD: show.c,v 1.44 2017/06/08 13:17:00 kre Exp $");
+__RCSID("$NetBSD: show.c,v 1.45 2017/06/17 04:16:33 kre Exp $");
 #endif
 #endif /* not lint */
 
@@ -298,9 +298,8 @@ trargs(char **ap)
 		trstring(*ap++);
 		if (*ap)
 			trace_putc(' ', tracetfile);
-		else
-			trace_putc('\n', tracetfile);
 	}
+	trace_putc('\n', tracetfile);
 }
 
 

Reply via email to