Mentions légales du service

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

Fix one bug raised by coverity

parent f08137a8
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -175,9 +175,9 @@ int main (int argc, char **argv)
exit(1);
}
sscanf( argv[1], "%d", &ncores );
sscanf( argv[2], "%d", &ngpus );
sscanf( argv[3], "%s", func );
sscanf( argv[1], "%d", &ncores );
sscanf( argv[2], "%d", &ngpus );
sscanf( argv[3], "%31s", func );
/* Initialize MORSE */
/*if(nthreads_per_worker)
......
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