Cleanup output and add padding
This commit is contained in:
parent
131e376de4
commit
7fccb87190
@ -283,9 +283,10 @@ main(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
fprintf(stderr, "\n");
|
fprintf(stderr, "\n");
|
||||||
printf("%s:\tsuccess= %.0f %%\tthreshold= %d ms\n",
|
printf("%-40s\tthreshold %-3d ms\tsuccess %3.0f %%\n",
|
||||||
argv[0] + 2,
|
argv[0] + 2,
|
||||||
100 * successes / (float)strlen(secret), cache_hit_threshold);
|
cache_hit_threshold,
|
||||||
|
100 * successes / (float)strlen(secret));
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user