mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:57:35 +00:00
Userland: Explicitly ignore number of types read, found by Coverity
This commit is contained in:
parent
9ffbe03bdb
commit
bcbac83a8b
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ static void wait_for_key()
|
||||||
printf("\033[7m--[ more ]--\033[0m");
|
printf("\033[7m--[ more ]--\033[0m");
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
char dummy;
|
char dummy;
|
||||||
read(key_fd, &dummy, 1);
|
(void)read(key_fd, &dummy, 1);
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue