From 2ebebc8356ea4972fbd722ddde246ea4d884f2ce Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini Date: Wed, 29 Sep 2004 07:49:09 +0000 Subject: [PATCH] Our termios.h header doesn't define termio to termios (as the R5 one does). termios is the correct name, anyway. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9099 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/terminal/MYOB/TermView.cpp | 2 +- src/apps/terminal/MYOB/spawn.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/terminal/MYOB/TermView.cpp b/src/apps/terminal/MYOB/TermView.cpp index d13c24d494..4e1cab1af2 100644 --- a/src/apps/terminal/MYOB/TermView.cpp +++ b/src/apps/terminal/MYOB/TermView.cpp @@ -1617,7 +1617,7 @@ void TermView::KeyDown (const char *bytes, int32 numBytes) { char c; - struct termio tio; + struct termios tio; int32 key, mod; uchar dstbuf[1024]; diff --git a/src/apps/terminal/MYOB/spawn.cpp b/src/apps/terminal/MYOB/spawn.cpp index 9b88721168..b721abe90a 100644 --- a/src/apps/terminal/MYOB/spawn.cpp +++ b/src/apps/terminal/MYOB/spawn.cpp @@ -131,7 +131,7 @@ spawn_shell (int row, int col, const char *command, const char *coding) int master = 0; int slave; - struct termio tio; + struct termios tio; struct winsize ws; handshake_t handshake;