summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/htsinthash.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/htsinthash.h b/src/htsinthash.h
index 90f8401..636b4b3 100644
--- a/src/htsinthash.h
+++ b/src/htsinthash.h
@@ -71,7 +71,10 @@ typedef unsigned __int64 uint64_t;
/** Value. **/
typedef union inthash_value {
/** Integer value. **/
- uintptr_t intg;
+ intptr_t intg;
+
+ /** Unsigned integer value. **/
+ uintptr_t uintg;
/** Pointer value. **/
void *ptr;