Skip to content

Commit 9583c5e

Browse files
committed
Remove defaults (won't compile on windows).
1 parent f37b054 commit 9583c5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lazy_object_proxy/cext.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,8 @@ static PyObject *Proxy_str(ProxyObject *self)
225225
static PyObject *Proxy_fspath(ProxyObject *self)
226226
{
227227
Proxy__ENSURE_WRAPPED_OR_RETURN_NULL(self);
228-
PyObject *func = NULL;
229-
PyObject *fspath = NULL;
228+
PyObject *func;
229+
PyObject *fspath;
230230

231231
if (PyUnicode_Check(self->wrapped) || PyBytes_Check(self->wrapped)) {
232232
Py_INCREF(self->wrapped);

0 commit comments

Comments
 (0)