Mentions légales du service

Skip to content
Snippets Groups Projects
Commit e1ba133b authored by RAMET Pierre's avatar RAMET Pierre
Browse files

fix uint32_t for solver ctrbcnt

parent 2e8d026b
No related branches found
No related tags found
No related merge requests found
......@@ -734,7 +734,7 @@ spmCheckAndCorrect( pastix_spm_t *spm )
/* Merge the duplicated entries by summing the values */
count = spmMergeDuplicate( newspm );
if ( count > 0 ) {
fprintf(stderr, "spmCheckAndCorrect: %ld entries have been merged\n", (int64_t)count );
fprintf(stderr, "spmCheckAndCorrect: %ld entries have been merged\n", (long)count );
}
/**
......@@ -745,7 +745,7 @@ spmCheckAndCorrect( pastix_spm_t *spm )
if ( newspm->mtxtype == PastixGeneral ) {
count = spmSymmetrize( newspm );
if ( count > 0 ) {
fprintf(stderr, "spmCheckAndCorrect: %ld entries have been added for symmetry\n", (int64_t)count );
fprintf(stderr, "spmCheckAndCorrect: %ld entries have been added for symmetry\n", (long)count );
}
}
else {
......
......@@ -316,5 +316,6 @@ spmReadDriver( pastix_driver_t driver,
spmUpdateComputedFields( spm );
(void)comm;
return PASTIX_SUCCESS;
}
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