Skip to content

Commit

Permalink
Merge pull request #5833 from hoodmane/fix-pushes_fd-signature
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Nov 16, 2021
2 parents be4c59d + 7a93328 commit 749754a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/decode.c
Expand Up @@ -235,7 +235,7 @@ _setfd(ImagingDecoderObject *decoder, PyObject *args) {
}

static PyObject *
_get_pulls_fd(ImagingDecoderObject *decoder) {
_get_pulls_fd(ImagingDecoderObject *decoder, void *closure) {
return PyBool_FromLong(decoder->pulls_fd);
}

Expand Down
2 changes: 1 addition & 1 deletion src/encode.c
Expand Up @@ -299,7 +299,7 @@ _setfd(ImagingEncoderObject *encoder, PyObject *args) {
}

static PyObject *
_get_pushes_fd(ImagingEncoderObject *encoder) {
_get_pushes_fd(ImagingEncoderObject *encoder, void *closure) {
return PyBool_FromLong(encoder->pushes_fd);
}

Expand Down

0 comments on commit 749754a

Please sign in to comment.