coverity: #1425840

Unchecked return value Signed-off-by: 's avatarChristian Brauner <christian.brauner@ubuntu.com>
parent 02a0e184
...@@ -139,7 +139,7 @@ Options :\n\ ...@@ -139,7 +139,7 @@ Options :\n\
static void stdin_tios_restore(void) static void stdin_tios_restore(void)
{ {
tcsetattr(0, TCSAFLUSH, &oldtios); (void)tcsetattr(0, TCSAFLUSH, &oldtios);
fprintf(stderr, "\n"); fprintf(stderr, "\n");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment