Mentions légales du service

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

should fix the clang warning

parent 4c071dc7
No related branches found
No related tags found
No related merge requests found
......@@ -221,8 +221,8 @@ static inline void s_spmPrintElt( FILE *f, pastix_int_t i, pastix_int_t j, float
*
* @remark: uses a macro to avoid accessing A that would generate segfault.
*/
#define p_spmPrintElt( f, i, j, A ) { \
fprintf( f, "%ld %ld\n", (long)i, (long)j ); \
#define p_spmPrintElt( f, i, j, A ) { \
fprintf( f, "%ld %ld\n", (long)(i), (long)(j) ); \
}
/**
......
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