Print name of driver on startup if debugging
This commit is contained in:
parent
d50d772ca5
commit
0483eacb68
|
@ -172,6 +172,10 @@ termkey_t *termkey_new_full(int fd, int flags, size_t buffsize, int waittime)
|
||||||
goto abort_free_keynames;
|
goto abort_free_keynames;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef DEBUG
|
||||||
|
fprintf(stderr, "Using the %s driver\n", tk->driver.name);
|
||||||
|
#endif
|
||||||
|
|
||||||
if(!(flags & TERMKEY_FLAG_NOTERMIOS)) {
|
if(!(flags & TERMKEY_FLAG_NOTERMIOS)) {
|
||||||
struct termios termios;
|
struct termios termios;
|
||||||
if(tcgetattr(fd, &termios) == 0) {
|
if(tcgetattr(fd, &termios) == 0) {
|
||||||
|
|
Loading…
Reference in New Issue