Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libcurses Add missing new line in debug print.



details:   https://anonhg.NetBSD.org/src/rev/84c5581b7689
branches:  trunk
changeset: 342734:84c5581b7689
user:      jdc <jdc%NetBSD.org@localhost>
date:      Thu Jan 07 07:36:35 2016 +0000

description:
Add missing new line in debug print.

diffstat:

 lib/libcurses/add_wch.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 453c66bd1893 -r 84c5581b7689 lib/libcurses/add_wch.c
--- a/lib/libcurses/add_wch.c   Thu Jan 07 04:45:10 2016 +0000
+++ b/lib/libcurses/add_wch.c   Thu Jan 07 07:36:35 2016 +0000
@@ -1,4 +1,4 @@
-/*   $NetBSD: add_wch.c,v 1.4 2013/11/09 11:16:59 blymn Exp $ */
+/*   $NetBSD: add_wch.c,v 1.5 2016/01/07 07:36:35 jdc Exp $ */
 
 /*
  * Copyright (c) 2005 The NetBSD Foundation Inc.
@@ -36,7 +36,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: add_wch.c,v 1.4 2013/11/09 11:16:59 blymn Exp $");
+__RCSID("$NetBSD: add_wch.c,v 1.5 2016/01/07 07:36:35 jdc Exp $");
 #endif /* not lint */
 
 #include <stdlib.h>
@@ -116,7 +116,7 @@
        for (i = 0; i < win->maxy; i++) {
                assert(win->alines[i]->sentinel == SENTINEL_VALUE);
        }
-       __CTRACE(__CTRACE_INPUT, "wadd_wch: win(%p)", win);
+       __CTRACE(__CTRACE_INPUT, "wadd_wch: win(%p)\n", win);
 #endif
        lnp = win->alines[y];
        return _cursesi_addwchar(win, &lnp, &y, &x, wch, 1);



Home | Main Index | Thread Index | Old Index