From 216005d33a220b0a638911bb8e8cb4a08d54584e Mon Sep 17 00:00:00 2001 From: Xavier Roche Date: Thu, 15 May 2014 19:24:56 +0000 Subject: Fixed uint64_t vs. long long int --- src/htsinthash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/htsinthash.c') diff --git a/src/htsinthash.c b/src/htsinthash.c index f6163ab..b842651 100644 --- a/src/htsinthash.c +++ b/src/htsinthash.c @@ -996,7 +996,7 @@ int inthash_write_value(inthash hashtable, const char *name, inthash_warning(hashtable, "stash size still full despite %"UINT_64_FORMAT " elements used out of %"UINT_64_FORMAT, - hashtable->used, half_size*2); + (uint64_t) hashtable->used, (uint64_t) half_size*2); } /* statistics */ -- cgit v1.2.3