diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/htsglobal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/htsglobal.h b/src/htsglobal.h index e3a006e..8b60577 100644 --- a/src/htsglobal.h +++ b/src/htsglobal.h @@ -325,8 +325,8 @@ typedef __int64 TStamp; #define LLintP "%I64d" #elif (defined(_LP64) || defined(__x86_64__) \ || defined(__powerpc64__) || defined(__64BIT__)) -typedef unsigned long int LLint; -typedef unsigned long int TStamp; +typedef long int LLint; +typedef long int TStamp; #define LLintP "%ld" #else |