mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
Fix comment string
This commit is contained in:
parent
126592b85d
commit
7e2980bee5
1 changed files with 2 additions and 4 deletions
|
|
@ -329,8 +329,7 @@ int pty_test_main(int argc, char *argv[])
|
|||
ret = tcgetattr(termpair.fd_uart, &tio);
|
||||
if (ret)
|
||||
{
|
||||
fprintf(stderr, "en_crlf_conv: ERROR during tcgetattr(): %d\n",
|
||||
errno);
|
||||
fprintf(stderr, "ERROR: tcgetattr() failed: %d\n", errno);
|
||||
goto error_serial;
|
||||
}
|
||||
|
||||
|
|
@ -338,8 +337,7 @@ int pty_test_main(int argc, char *argv[])
|
|||
ret = tcsetattr(termpair.fd_uart, TCSANOW, &tio);
|
||||
if (ret)
|
||||
{
|
||||
fprintf(stderr, "en_crlf_conv: ERROR during tcsetattr(): %d\n",
|
||||
errno);
|
||||
fprintf(stderr, "ERROR: tcsetattr() failed: %d\n", errno);
|
||||
goto error_serial;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue