Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit75f7855

Browse files
committed
Fix inconsistent argument naming.
Typo in commit842cb9f.
1 parenta5322ca commit75f7855

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎src/port/dlopen.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dlopen(const char *file, int mode)
3333
flags |=BIND_DEFERRED;
3434
#endif
3535

36-
returnshl_load(filename,flags |BIND_VERBOSE,0L);
36+
returnshl_load(file,flags |BIND_VERBOSE,0L);
3737
}
3838

3939
void*
@@ -123,14 +123,14 @@ dlsym(void *handle, const char *symbol)
123123
}
124124

125125
void*
126-
dlopen(constchar*path,intmode)
126+
dlopen(constchar*file,intmode)
127127
{
128128
HMODULEh;
129129
intprevmode;
130130

131131
/* Disable popup error messages when loading DLLs */
132132
prevmode=SetErrorMode(SEM_FAILCRITICALERRORS |SEM_NOOPENFILEERRORBOX);
133-
h=LoadLibrary(path);
133+
h=LoadLibrary(file);
134134
SetErrorMode(prevmode);
135135

136136
if (!h)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp