mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 22:47:44 +00:00
Everywhere: "file name" => "filename"
This commit is contained in:
parent
def1f1444a
commit
7ae7170d61
59 changed files with 181 additions and 181 deletions
|
@ -41,9 +41,9 @@ char* dlerror()
|
|||
return const_cast<char*>(s_dlerror_text);
|
||||
}
|
||||
|
||||
void* dlopen(const char* file_name, int flags)
|
||||
void* dlopen(const char* filename, int flags)
|
||||
{
|
||||
auto result = __dlopen(file_name, flags);
|
||||
auto result = __dlopen(filename, flags);
|
||||
if (result.is_error()) {
|
||||
store_error(result.error().text);
|
||||
return nullptr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue