From 2fdf4cec553cca9a43409032b976bb1c1a872b66 Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Sat, 9 Jun 2018 09:28:45 -0600 Subject: BUG: Remove extra trailing paretheses. The `npy_get_floatstatus_barrier` had an extra parentheses in the argument list of the function definition that was exposed when compiling on NetBSD. Closes #11288. --- numpy/core/src/npymath/ieee754.c.src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy') diff --git a/numpy/core/src/npymath/ieee754.c.src b/numpy/core/src/npymath/ieee754.c.src index ea1792887..8b5eef87a 100644 --- a/numpy/core/src/npymath/ieee754.c.src +++ b/numpy/core/src/npymath/ieee754.c.src @@ -583,7 +583,7 @@ int npy_get_floatstatus() { defined(__NetBSD__) #include -int npy_get_floatstatus_barrier(char * param)) +int npy_get_floatstatus_barrier(char * param) { int fpstatus = fpgetsticky(); /* -- cgit v1.2.1