diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-02-22 23:16:19 +0000 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-02-22 23:16:19 +0000 |
commit | 3046647478f584b665a33c3a1c3d1d6117979d64 (patch) | |
tree | 1b3bf63efe5ef6666104409618dccd6d148e8734 /Python/dynload_hpux.c | |
parent | b5162583f02ef19edb3b4804cac793f1183c6283 (diff) | |
download | cpython-3046647478f584b665a33c3a1c3d1d6117979d64.tar.gz |
Issue #3080: Remove unused argument of _PyImport_GetDynLoadFunc()
The first argument, fqname, was not used.
Diffstat (limited to 'Python/dynload_hpux.c')
-rw-r--r-- | Python/dynload_hpux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dynload_hpux.c b/Python/dynload_hpux.c index 18a81377f2..3ebbbad01f 100644 --- a/Python/dynload_hpux.c +++ b/Python/dynload_hpux.c @@ -19,7 +19,7 @@ const struct filedescr _PyImport_DynLoadFiletab[] = { {0, 0} }; -dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, +dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname, const char *pathname, FILE *fp) { dl_funcptr p; |