Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
23f391c6
Commit
23f391c6
authored
Jan 04, 2006
by
Hye-Shik Chang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a warning from gcc by adding a missed const qualifier.
parent
6bfd8de9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Python/dynload_shlib.c
Python/dynload_shlib.c
+1
-1
No files found.
Python/dynload_shlib.c
View file @
23f391c6
...
...
@@ -130,7 +130,7 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname,
handle
=
dlopen
(
pathname
,
dlopenflags
);
if
(
handle
==
NULL
)
{
char
*
error
=
dlerror
();
c
onst
c
har
*
error
=
dlerror
();
if
(
error
==
NULL
)
error
=
"unknown dlopen() error"
;
PyErr_SetString
(
PyExc_ImportError
,
error
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment