fix error message

This commit is contained in:
Guillaume Horel
2019-09-11 10:33:35 -04:00
parent 3f1077ce6f
commit 2463938879
20 changed files with 26 additions and 26 deletions
+1 -1
View File
@@ -102,7 +102,7 @@ int NAME(char *TRANS, blasint *N, blasint *NRHS, FLOAT *a, blasint *ldA,
if (trans < 0) info = 1;
if (info != 0) {
BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME) - 1);
return 0;
}