summaryrefslogtreecommitdiff
path: root/numpy/numarray
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-11-17 00:45:36 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-11-17 00:45:36 +0000
commitf552cf5cb9ccb02e05597559069ad97312464c54 (patch)
tree71628e76a402cec510cf8aacd2613b032127e80f /numpy/numarray
parente6ef04049867f2174c766e2e81e27d79f531b44d (diff)
downloadnumpy-f552cf5cb9ccb02e05597559069ad97312464c54.tar.gz
Fix some compiler errors.
Diffstat (limited to 'numpy/numarray')
-rw-r--r--numpy/numarray/numpy/arraybase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/numarray/numpy/arraybase.h b/numpy/numarray/numpy/arraybase.h
index 9ed87eb13..40d1394bf 100644
--- a/numpy/numarray/numpy/arraybase.h
+++ b/numpy/numarray/numpy/arraybase.h
@@ -37,7 +37,7 @@ typedef enum
tObject=PyArray_OBJECT, /* placeholder... does nothing */
tMaxType=PyArray_NTYPES,
tDefault = tFloat64,
-#if BITSOF_LONG == 64
+#if NPY_BITSOF_LONG == 64
tLong = tInt64,
#else
tLong = tInt32,