fixed minor warnings

This commit is contained in:
Yann Collet 2021-12-11 10:28:20 -08:00
parent a17161efb1
commit 8e5afc71b3
2 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@
* - xxHash source repository: https://github.com/Cyan4973/xxHash
*/
#include "xsum_output.h"
#include "xsum_os_specific.h" /* XSUM_API */
int XSUM_logLevel = 2;

View File

@ -898,7 +898,7 @@ static int XSUM_usage_advanced(const char* exename)
XSUM_log( " --little-endian Checksum values use little endian convention (default: big endian) \n");
XSUM_log( " -b Run benchmark \n");
XSUM_log( " -b# Bench only algorithm variant # \n");
XSUM_log( " -i# Number of times to run the benchmark (default: %u) \n", NBLOOPS_DEFAULT);
XSUM_log( " -i# Number of times to run the benchmark (default: %i) \n", NBLOOPS_DEFAULT);
XSUM_log( " -q, --quiet Don't display version header in benchmark mode \n");
XSUM_log( "\n");
XSUM_log( "The following four options are useful only when verifying checksums (-c): \n");