diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2008-04-09 15:07:33 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2008-04-09 15:07:33 +0000 |
commit | ef7d8ef5af67c2c1671d655e2ab796271f664aec (patch) | |
tree | a13e5329c4754a989ec86a185a62f5ae08f260b6 /numpy/linalg/pythonxerbla.c | |
parent | 338ae1945ab337d49c816660f0afb4398d721caf (diff) | |
download | numpy-ef7d8ef5af67c2c1671d655e2ab796271f664aec.tar.gz |
Fixing compile error from MSVC. Try 2.
Diffstat (limited to 'numpy/linalg/pythonxerbla.c')
-rw-r--r-- | numpy/linalg/pythonxerbla.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/pythonxerbla.c b/numpy/linalg/pythonxerbla.c index 2c75be3ec..77c317e89 100644 --- a/numpy/linalg/pythonxerbla.c +++ b/numpy/linalg/pythonxerbla.c @@ -18,7 +18,7 @@ int xerbla_(char *srname, integer *info) { - const char* format = "On entry to %.*s" \ + char* format = "On entry to %.*s" \ " parameter number %d had an illegal value"; char buf[60 + 6 + 4]; /* 6 for name, 4 for param. num. */ |