aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--termkey.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/termkey.c b/termkey.c
index 4d21876..4e0b1ea 100644
--- a/termkey.c
+++ b/termkey.c
@@ -172,6 +172,10 @@ termkey_t *termkey_new_full(int fd, int flags, size_t buffsize, int waittime)
goto abort_free_keynames;
}
+#ifdef DEBUG
+ fprintf(stderr, "Using the %s driver\n", tk->driver.name);
+#endif
+
if(!(flags & TERMKEY_FLAG_NOTERMIOS)) {
struct termios termios;
if(tcgetattr(fd, &termios) == 0) {