diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-07-08 16:57:37 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-07-08 16:57:37 +0000 |
commit | b6ee0d8d5d1cbf1e228f7a8f636ab3c6a7661333 (patch) | |
tree | b1427121d125553aa6cac695f7ee2b4f2ebe5ff6 /src | |
parent | 57c732da58ab13485f83f890369126ccc3e1228c (diff) |
Huge regression: LLint is signed! (regression introduced in r429 and r432)
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 |