aboutsummaryrefslogtreecommitdiffhomepage
path: root/blas
diff options
context:
space:
mode:
authorGravatar Chen-Pang He <jdh8@ms63.hinet.net>2012-09-03 15:31:19 +0800
committerGravatar Chen-Pang He <jdh8@ms63.hinet.net>2012-09-03 15:31:19 +0800
commitc4051d3d024584323b20e1568d982b76a702f80c (patch)
tree3609393d2b095d0bbe0738a491595a1c618ec2bf /blas
parentd4144583bbdf35e6dc888e03c6a6eedc73a1b31d (diff)
Fix a typo in blas/common.h
Diffstat (limited to 'blas')
-rw-r--r--blas/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/blas/common.h b/blas/common.h
index b598c4e45..cd7839114 100644
--- a/blas/common.h
+++ b/blas/common.h
@@ -48,7 +48,7 @@
: ((X)=='L' || (X)=='l') ? LO \
: INVALID)
-#define DIAG(X) ( ((X)=='N' || (X)=='N') ? NUNIT \
+#define DIAG(X) ( ((X)=='N' || (X)=='n') ? NUNIT \
: ((X)=='U' || (X)=='u') ? UNIT \
: INVALID)