summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-06-09 09:28:45 -0600
committerCharles Harris <charlesr.harris@gmail.com>2018-06-09 09:35:35 -0600
commit2fdf4cec553cca9a43409032b976bb1c1a872b66 (patch)
tree4a4c1df04b3fd90822662f40bce8dc6502dbb38a
parentdf7b99c63b3686a25b10888e8374a936ab615de7 (diff)
downloadnumpy-2fdf4cec553cca9a43409032b976bb1c1a872b66.tar.gz
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.
-rw-r--r--numpy/core/src/npymath/ieee754.c.src2
1 files changed, 1 insertions, 1 deletions
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 <ieeefp.h>
-int npy_get_floatstatus_barrier(char * param))
+int npy_get_floatstatus_barrier(char * param)
{
int fpstatus = fpgetsticky();
/*