diff options
author | cgohlke <cgohlke@uci.edu> | 2012-09-16 16:15:15 -0700 |
---|---|---|
committer | cgohlke <cgohlke@uci.edu> | 2012-09-16 16:15:15 -0700 |
commit | 0ab86f0073faf3ff6e22902f8c45e41f62e0f703 (patch) | |
tree | 79871b381191d3bdc36153aecfaee6207ab2b529 /numpy/build_utils | |
parent | d7215411dab5aade2a70d2938adb4308c923b054 (diff) | |
download | numpy-0ab86f0073faf3ff6e22902f8c45e41f62e0f703.tar.gz |
Style: consistently use spaces instead of tabs
Diffstat (limited to 'numpy/build_utils')
-rw-r--r-- | numpy/build_utils/waf.py | 4 |
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} |