Skip to content
Snippets Groups Projects
Commit 2b75a65e authored by Ture Pålsson's avatar Ture Pålsson
Browse files

Fix bad format string to printf

parent 771f5146
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,7 @@ main(void)
}
printf("\n\nLINPACK benchmark, accelerate version, %s precision.\n",PREC);
printf("Machine precision: %d digits.\n",BASE10DIG);
printf("Array size %"PLF" X %d.\n",arsize,arsize);
printf("Array size %d X %d.\n",arsize,arsize);
printf(" Reps Time(s) DGEFA DGESL OVERHEAD KFLOPS\n");
printf("----------------------------------------------------\n");
nreps=1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment