mirror of
https://git.freebsd.org/ports.git
synced 2025-05-14 16:21:50 -04:00
11 lines
361 B
C++
11 lines
361 B
C++
--- src/annoymodule.cc.orig 2023-01-12 04:57:07 UTC
|
|
+++ src/annoymodule.cc
|
|
@@ -179,7 +179,7 @@ py_an_init(py_annoy *self, PyObject *args, PyObject *k
|
|
int f;
|
|
static char const * kwlist[] = {"f", "metric", NULL};
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i|s", (char**)kwlist, &f, &metric))
|
|
- return (int) NULL;
|
|
+ return 0;
|
|
return 0;
|
|
}
|
|
|