summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2014-05-15 19:24:56 +0000
committerXavier Roche <xroche@users.noreply.github.com>2014-05-15 19:24:56 +0000
commit216005d33a220b0a638911bb8e8cb4a08d54584e (patch)
tree7c8b273526c111263570b8e52481e165f82ca0c6 /src
parent59008af0678345bb5c72c6dde2156a045c9824af (diff)
Fixed uint64_t vs. long long int
Diffstat (limited to 'src')
-rw-r--r--src/htsinthash.c2
1 files changed, 1 insertions, 1 deletions
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 */