summaryrefslogtreecommitdiff
path: root/numpy/numarray
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-03-03 09:50:05 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-03-03 09:50:05 +0000
commit2f1c2a45b3931d44d949ada1962115f3b791f0ee (patch)
tree7ee43da1922f487d3ac7c0d87217d8153ef9c865 /numpy/numarray
parent18b91d84c587bf39181b246241e3c6e9fbafe8c1 (diff)
downloadnumpy-2f1c2a45b3931d44d949ada1962115f3b791f0ee.tar.gz
Fix wrong typedef for UInt64.
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 40d1394bf..a964979ce 100644
--- a/numpy/numarray/numpy/arraybase.h
+++ b/numpy/numarray/numpy/arraybase.h
@@ -14,7 +14,7 @@ typedef npy_uint16 UInt16;
typedef npy_int32 Int32;
typedef npy_uint32 UInt32;
typedef npy_int64 Int64;
-typedef npy_int64 UInt64;
+typedef npy_uint64 UInt64;
typedef npy_float32 Float32;
typedef npy_float64 Float64;