From 8b54d193268d1c02c92f16eedc684d28d200fc80 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 29 Jul 2024 21:27:42 +0530 Subject: [PATCH] ... --- kitty/data-types.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/data-types.c b/kitty/data-types.c index a53eb5973..05117826c 100644 --- a/kitty/data-types.c +++ b/kitty/data-types.c @@ -111,7 +111,7 @@ typedef struct StreamingBase64Decoder { } StreamingBase64Decoder; static int -StreamingBase64Decoder_init(PyObject *s, PyObject *args UNUSED, PyObject *kwds UNUSED) { +StreamingBase64Decoder_init(PyObject *s, PyObject *args, PyObject *kwds UNUSED) { if (PyTuple_GET_SIZE(args)) { PyErr_SetString(PyExc_TypeError, "constructor takes no arguments"); return -1; } StreamingBase64Decoder *self = (StreamingBase64Decoder*)s; base64_stream_decode_init(&self->state, 0);