summaryrefslogtreecommitdiff
path: root/numpy/linalg/lapack_litemodule.c
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2006-11-11 22:32:42 +0000
committerCharles Harris <charlesr.harris@gmail.com>2006-11-11 22:32:42 +0000
commit0a4064e8356c286b864315f1a7750e273119548f (patch)
tree209c42b620150255de41f68db38e0ff11e1dde86 /numpy/linalg/lapack_litemodule.c
parentad31bbdce9e812e4218839c1446031b9d41dd514 (diff)
downloadnumpy-0a4064e8356c286b864315f1a7750e273119548f.tar.gz
Fix typo in lapack_litemodule.c
Diffstat (limited to 'numpy/linalg/lapack_litemodule.c')
-rw-r--r--numpy/linalg/lapack_litemodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/lapack_litemodule.c b/numpy/linalg/lapack_litemodule.c
index 0cb2c8bcc..950040b5e 100644
--- a/numpy/linalg/lapack_litemodule.c
+++ b/numpy/linalg/lapack_litemodule.c
@@ -459,7 +459,7 @@ lapack_lite_dgesdd(PyObject *self, PyObject *args)
nwork = MAX(work0,3*mn*mn + \
MAX(mx,4*mn*(mn+1))+500);
break;
- defaul:
+ default:
nwork = work0;
}
*DDATA(work) = (double) nwork;