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;