From 3919766b4759367f6a70b22fc3a1ed1ad28a0e39 Mon Sep 17 00:00:00 2001 From: Jonas Dedden Date: Tue, 6 Aug 2024 10:37:59 +0200 Subject: [PATCH] Again --- _crc32c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_crc32c.c b/_crc32c.c index 38dd341..693a847 100644 --- a/_crc32c.c +++ b/_crc32c.c @@ -86,7 +86,7 @@ PyObject *crc32c_crc32(PyObject *self, PyObject *args, PyObject *kwargs) if (PyErr_WarnEx(PyExc_DeprecationWarning, "crc32c.crc32 will be eventually removed, use crc32c.crc32c instead", 1) == -1) { - return NULL; + return NULL; } return crc32c_crc32c(self, args, kwargs); }