summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/build_utils/waf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/build_utils/waf.py b/numpy/build_utils/waf.py
index ab49ecea9..4ef71327c 100644
--- a/numpy/build_utils/waf.py
+++ b/numpy/build_utils/waf.py
@@ -123,9 +123,9 @@ int main()
def check_type(self, type_name, **kw):
code = r"""
int main() {
- if ((%(type_name)s *) 0)
+ if ((%(type_name)s *) 0)
return 0;
- if (sizeof (%(type_name)s))
+ if (sizeof (%(type_name)s))
return 0;
}
""" % {"type_name": type_name}