posix uart termios typo (#463)

This commit is contained in:
Marcin K Szczodrak
2016-08-25 21:37:49 -07:00
committed by Jonathan Hui
parent 70bd6af3b8
commit e1771f6cc4
+1 -1
View File
@@ -81,7 +81,7 @@ ThreadError otPlatUartEnable(void)
if (isatty(s_out_fd))
{
tcgetattr(s_out_fd, &original_stdin_termios);
tcgetattr(s_out_fd, &original_stdout_termios);
atexit(&restore_stdout_termios);
}