Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2012-11-08 21:27:00 +0400
committerChristopher Faylor <me@cgf.cx>2012-11-08 21:27:00 +0400
commitaaa812cbd0479190158b2f6bb6dff1fd8e0cc5d9 (patch)
tree9f3e32f762695de42b664b381fae6f2f1761e75f /winsup/cygwin/fhandler_tty.cc
parent61746d6ae850aa6a89b0c0b00c609011c6d0ade9 (diff)
* fhandler_termios.cc (fhandler_termios::line_edit): Don't do special character
handling when stopped by CTRL-S. * fhandler_tty.cc (bytes_available): Add arguments to debug_only_printf call. * sigproc.cc (proc_subproc): Simplify some if logic.
Diffstat (limited to 'winsup/cygwin/fhandler_tty.cc')
-rw-r--r--winsup/cygwin/fhandler_tty.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc
index 6bb389f38..dcbe8097d 100644
--- a/winsup/cygwin/fhandler_tty.cc
+++ b/winsup/cygwin/fhandler_tty.cc
@@ -67,7 +67,7 @@ bytes_available (DWORD& n, HANDLE h)
termios_printf ("PeekNamedPipe(%p) failed, %E", h);
n = 0;
}
- debug_only_printf ("n %u, nleft %u, navail %u");
+ debug_only_printf ("n %u, nleft %u, navail %u", n, nleft, navail);
return succeeded;
}