Skip to content

Commit

Permalink
Corrected syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere authored Feb 8, 2024
1 parent c93b232 commit cb39b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_webp.c
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ _anim_decoder_get_next(PyObject *self) {
WebPAnimDecoderObject *decp = (WebPAnimDecoderObject *)self;

ImagingSectionEnter(&cookie);
ok = WebPAnimDecoderGetNext(decp->dec, &buf, &timestamp)
ok = WebPAnimDecoderGetNext(decp->dec, &buf, &timestamp);
ImagingSectionLeave(&cookie);
if (!ok) {
PyErr_SetString(PyExc_OSError, "failed to read next frame");
Expand Down

0 comments on commit cb39b1c

Please sign in to comment.