summaryrefslogtreecommitdiff
path: root/scipy/base/src
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-09-22 05:45:56 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-09-22 05:45:56 +0000
commit69134e103855ba89738f02ef6426e95a276cb8fe (patch)
treeb572c3508a8917759e82112b8a6de5aa47cf7913 /scipy/base/src
parentc487b9c4204c6e89cd8eb95aa2c0ab2d7c27ec85 (diff)
downloadnumpy-69134e103855ba89738f02ef6426e95a276cb8fe.tar.gz
fixed so that fp status flags are checked on mingw32 platform where __MINGW32__ is defined.
Diffstat (limited to 'scipy/base/src')
-rw-r--r--scipy/base/src/ufuncobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/base/src/ufuncobject.c b/scipy/base/src/ufuncobject.c
index 3c2d3b9b0..976b89a40 100644
--- a/scipy/base/src/ufuncobject.c
+++ b/scipy/base/src/ufuncobject.c
@@ -480,7 +480,7 @@ PyUFunc_checkfperr(int errmask, PyObject *errobj)
/* End platform dependent code */
-#define HANDLEIT(NAME, str) {if (retstatus & UFUNC_FPE_##NAME) { \
+#define HANDLEIT(NAME, str) {if (retstatus & UFUNC_FPE_##NAME) { \
handle = errmask & UFUNC_MASK_##NAME;\
if (handle && \
_error_handler(handle >> UFUNC_SHIFT_##NAME, \