]> Zhao Yanbai Git Server - minix.git/commitdiff
Get out silly debug message
authorBen Gras <ben@minix3.org>
Thu, 13 Oct 2005 08:49:42 +0000 (08:49 +0000)
committerBen Gras <ben@minix3.org>
Thu, 13 Oct 2005 08:49:42 +0000 (08:49 +0000)
drivers/tty/tty.c

index 323af8326d6af4e1418d1fa067cbd1f09ba65569..c1448ead768a694fda072051905de4def84899c3 100644 (file)
@@ -297,8 +297,8 @@ PUBLIC void main(void)
            case DEV_SELECT:     do_select(tp, &tty_mess);        break;
            case CANCEL:         do_cancel(tp, &tty_mess);        break;
            default:            
-               printf("Warning, TTY got unexpected request %d from %d (open is %d)\n",
-                       tty_mess.m_type, tty_mess.m_source, DEV_OPEN);
+               printf("Warning, TTY got unexpected request %d from %d\n",
+                       tty_mess.m_type, tty_mess.m_source);
            tty_reply(TASK_REPLY, tty_mess.m_source,
                                                tty_mess.PROC_NR, EINVAL);
        }