mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-17 07:50:04 +00:00
Userland: Explicitly ignore number of types read, found by Coverity
This commit is contained in:
parent
9ffbe03bdb
commit
bcbac83a8b
Notes:
sideshowbarker
2024-07-19 03:30:26 +09:00
Author: https://github.com/bgianfo
Commit: bcbac83a8b
Pull-request: https://github.com/SerenityOS/serenity/pull/3184
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/bugaevc
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ static void wait_for_key()
|
|||
printf("\033[7m--[ more ]--\033[0m");
|
||||
fflush(stdout);
|
||||
char dummy;
|
||||
read(key_fd, &dummy, 1);
|
||||
(void)read(key_fd, &dummy, 1);
|
||||
printf("\n");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue