Skip to content

Commit 612856a

Browse files
committed
Fix invalid C prototype.
Might be the only case of -Wstrict-prototypes being used.
1 parent 31ef622 commit 612856a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qhull_wrap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ delaunay(PyObject *self, PyObject *args)
310310

311311
/* Return qhull version string for assistance in debugging. */
312312
static PyObject*
313-
version()
313+
version(void)
314314
{
315315
return PyBytes_FromString(qh_version);
316316
}

0 commit comments

Comments
 (0)