Skip to content

Commit

Permalink
Merge pull request #6987 from radarhere/unused
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Mar 4, 2023
2 parents 6ee157c + 02afe1f commit 1da6ff3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/_imagingcms.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ cms_profile_open(PyObject *self, PyObject *args) {
}

static PyObject *
cms_profile_fromstring(PyObject *self, PyObject *args) {
cms_profile_frombytes(PyObject *self, PyObject *args) {
cmsHPROFILE hProfile;

char *pProfile;
Expand Down Expand Up @@ -960,8 +960,7 @@ _is_intent_supported(CmsProfileObject *self, int clut) {
static PyMethodDef pyCMSdll_methods[] = {

{"profile_open", cms_profile_open, METH_VARARGS},
{"profile_frombytes", cms_profile_fromstring, METH_VARARGS},
{"profile_fromstring", cms_profile_fromstring, METH_VARARGS},
{"profile_frombytes", cms_profile_frombytes, METH_VARARGS},
{"profile_tobytes", cms_profile_tobytes, METH_VARARGS},

/* profile and transform functions */
Expand Down

0 comments on commit 1da6ff3

Please sign in to comment.