mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:48:10 +00:00
LibELF: Cast unused smart-pointer return value to void
This commit is contained in:
parent
a0f6da7ceb
commit
c67c1b583a
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