Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 67a282f2 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Fix compilation issue in spm

parent 78ae1e1d
No related branches found
No related tags found
No related merge requests found
......@@ -1328,7 +1328,7 @@ spmScalMatrix(double alpha, pastix_spm_t* spm)
* The vector to scal of size ( 1 + (n-1) * abs(incx) ), and of type
* defined by flt.
*
* @param[in] inc
* @param[in] incx
* Storage spacing between elements of x.
*
*******************************************************************************/
......@@ -1337,9 +1337,9 @@ spmScalVector( pastix_coeftype_t flt,
double alpha,
pastix_int_t n,
void *x,
pastix_int_t inc )
pastix_int_t incx )
{
switch(spm->flttype)
switch( flt )
{
case PastixPattern:
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment