mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-27 11:48:59 +00:00
LibELF: Cast unused smart-pointer return value to void
This commit is contained in:
parent
a0f6da7ceb
commit
c67c1b583a
Notes:
sideshowbarker
2024-07-17 23:09:30 +09:00
Author: https://github.com/AtkinsSJ
Commit: c67c1b583a
Pull-request: https://github.com/SerenityOS/serenity/pull/11151
1 changed files with 1 additions and 1 deletions
|
@ -520,7 +520,7 @@ void ELF::DynamicLinker::linker_main(String&& main_program_name, int main_progra
|
|||
fflush(stderr);
|
||||
_exit(1);
|
||||
}
|
||||
result1.release_value();
|
||||
(void)result1.release_value();
|
||||
|
||||
auto result2 = map_dependencies(library_name);
|
||||
if (result2.is_error()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue