Module Name:    src
Committed By:   jdc
Date:           Thu Jan  7 07:37:09 UTC 2016

Modified Files:
        src/lib/libcurses: touchwin.c

Log Message:
Display force flag in debug print.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/lib/libcurses/touchwin.c

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

Modified files:

Index: src/lib/libcurses/touchwin.c
diff -u src/lib/libcurses/touchwin.c:1.27 src/lib/libcurses/touchwin.c:1.28
--- src/lib/libcurses/touchwin.c:1.27	Fri Dec  6 11:23:47 2013
+++ src/lib/libcurses/touchwin.c	Thu Jan  7 07:37:08 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: touchwin.c,v 1.27 2013/12/06 11:23:47 blymn Exp $	*/
+/*	$NetBSD: touchwin.c,v 1.28 2016/01/07 07:37:08 jdc Exp $	*/
 
 /*
  * Copyright (c) 1981, 1993, 1994
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)touchwin.c	8.2 (Berkeley) 5/4/94";
 #else
-__RCSID("$NetBSD: touchwin.c,v 1.27 2013/12/06 11:23:47 blymn Exp $");
+__RCSID("$NetBSD: touchwin.c,v 1.28 2016/01/07 07:37:08 jdc Exp $");
 #endif
 #endif				/* not lint */
 
@@ -207,8 +207,8 @@ static int
 _cursesi_touchline_force(WINDOW *win, int y, int sx, int ex, int force)
 {
 #ifdef DEBUG
-	__CTRACE(__CTRACE_LINE, "__touchline: (%p, %d, %d, %d)\n",
-	    win, y, sx, ex);
+	__CTRACE(__CTRACE_LINE, "__touchline: (%p, %d, %d, %d, %d)\n",
+	    win, y, sx, ex, force);
 	__CTRACE(__CTRACE_LINE, "__touchline: first = %d, last = %d\n",
 	    *win->alines[y]->firstchp, *win->alines[y]->lastchp);
 #endif

Reply via email to